diff --git a/bin/make-new-etg-file.py b/bin/make-new-etg-file.py index a3baf7f1..5d9d9643 100755 --- a/bin/make-new-etg-file.py +++ b/bin/make-new-etg-file.py @@ -125,12 +125,12 @@ def main(): def writeFile(filename, stub, values): if os.path.exists(filename): - print "'%s' already exists. Exiting." % filename + print("'%s' already exists. Exiting." % filename) sys.exit(1) output = open(filename, 'w') output.write(stub % values) output.close() - print "Wrote", filename + print("Wrote %s" % filename)