Added missing parentheses

This commit is contained in:
ulteq 2015-04-16 18:29:23 +02:00
parent cdb460d36d
commit d82d9984d8

View File

@ -78,9 +78,9 @@ def check_privates(filepath):
missing.append(s)
if len(missing) > 0:
print filepath
print (filepath)
for bad_priv in missing:
print '\t' + bad_priv
print ('\t' + bad_priv)
def main():
@ -102,4 +102,4 @@ def main():
check_privates(filename)
if __name__ == "__main__":
main()
main()