From 7de7bbe1e48e51386ec466618fdbf6277ad3f934 Mon Sep 17 00:00:00 2001 From: anatoly techtonik <techtonik@gmail.com> Date: Sat, 20 Jun 2015 17:49:24 +0300 Subject: Fix premature SyntaxError on Python 3 This allows to show correct message for Python 3 users --- src/script/scons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/scons.py b/src/script/scons.py index 0c7b44c..e522f57 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -191,7 +191,7 @@ if __name__ == "__main__": except: print("Import failed. Unable to find SCons files in:") for path in libs: - print " %s" % path + print(" %s" % path) raise # this does all the work, and calls sys.exit -- cgit v0.12