[Testing] Python 3 requires `print` to use parens

llvm-svn: 372392
This commit is contained in:
David Zarzycki 2019-09-20 13:52:47 +00:00
parent 2d0cd6cac8
commit 4fff87d2ee
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ for line in input:
line = line[:i] line = line[:i]
if "%interesting" in line: if "%interesting" in line:
InterestingInstructions += 1 InterestingInstructions += 1
print InterestingInstructions print(InterestingInstructions)
if InterestingInstructions == 5: if InterestingInstructions == 5:
sys.exit(0) # interesting! sys.exit(0) # interesting!