From 0799c11cb5475196d5a1e9234c6e9d6937e99e4f Mon Sep 17 00:00:00 2001 From: nikhiljindal Date: Thu, 24 Sep 2015 13:10:25 -0700 Subject: [PATCH] printf->print --- hack/verify-flags-underscore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-flags-underscore.py b/hack/verify-flags-underscore.py index 850bf3e851c..8b11d8da361 100755 --- a/hack/verify-flags-underscore.py +++ b/hack/verify-flags-underscore.py @@ -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]