Skip to content

Commit

Permalink
Changed to python3 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
SethBling committed Mar 9, 2024
1 parent ae7d82b commit 5474de5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import scriptparse
import os

if len(sys.argv) <> 2:
print "You must include a script filename."
if len(sys.argv) != 2:
print("You must include a script filename.")
exit()

source = source_file.source_file(sys.argv[1])
Expand Down

0 comments on commit 5474de5

Please sign in to comment.