printf->print

This commit is contained in:
nikhiljindal 2015-09-24 13:10:25 -07:00
parent 0662141f67
commit 0799c11cb5

View File

@ -197,7 +197,7 @@ def load_exceptions(rootdir):
for exception in exception_file.read().splitlines():
out = exception.split(":", 1)
if len(out) != 2:
printf("Invalid line in exceptions file: %s" % exception)
print("Invalid line in exceptions file: %s" % exception)
continue
filename = out[0]
line = out[1]