mirror of
https://github.com/opencv/opencv.git
synced 2025-06-18 08:05:23 +08:00
Fix SyntaxError with print
This commit is contained in:
parent
87c27a074d
commit
69e19b88c2
@ -157,8 +157,8 @@ if __name__ == '__main__':
|
|||||||
parser.parse(x)
|
parser.parse(x)
|
||||||
funcs = parser.get_not_tested()
|
funcs = parser.get_not_tested()
|
||||||
if funcs:
|
if funcs:
|
||||||
print "NOT TESTED methods:\n\t", "\n\t".join(sorted(funcs))
|
print ('{} {}'.format("NOT TESTED methods:\n\t", "\n\t".join(sorted(funcs))))
|
||||||
print "Total methods found: %i (%i)" % parser.get_funcs_count()
|
print ("Total methods found: %i (%i)" % parser.get_funcs_count())
|
||||||
print "Not tested methods found:", len(funcs)
|
print ('{} {}'.format("Not tested methods found:", len(funcs)))
|
||||||
print "Total tests found:", parser.get_tests_count()
|
print ('{} {}'.format("Total tests found:", parser.get_tests_count()))
|
||||||
print "Empty test stubs found:", parser.get_empty_stubs_count()
|
print ('{} {}'.format("Empty test stubs found:", parser.get_empty_stubs_count()))
|
||||||
|
Loading…
Reference in New Issue
Block a user