Change print-function to have brackets

This commit is contained in:
NeroBurner 2015-09-16 22:44:41 +02:00 committed by Daniel Martí
parent 967472408b
commit af38f151a2
4 changed files with 9 additions and 9 deletions

View file

@ -318,7 +318,7 @@ def main():
probcount += 1
logging.info("Finished:")
print "%d problems found" % probcount
print("%d problems found" % probcount)
if __name__ == "__main__":
main()