Commit f4f8ec68 authored by Eric Tune's avatar Eric Tune

Merge pull request #14518 from nikhiljindal/flag-exceptions

printf->print in hack/verify-flags-underscore.py script
parents 2eb60f43 0799c11c
......@@ -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]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment