Transform a python 2 print to python3

This commit is contained in:
Augustin Trancart 2020-02-09 22:12:46 +01:00
parent e7d661aa80
commit 5b500f3498

View file

@ -200,4 +200,4 @@ if __name__ == '__main__':
else:
name = '<stdin>'
file = sys.stdin
print Converter().parse(file, name)
print(Converter().parse(file, name))