summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2015-06-20 17:49:24 +0300
committeranatoly techtonik <techtonik@gmail.com>2015-06-20 17:49:24 +0300
commit6bfaca59f89cf1b90bbe55f5c94e625fbd26a745 (patch)
tree0866484f6f978e2ca29efc4266111029e8c100f1
parentcddd8e815bb43a3079c8df0b49a9b6a60119f033 (diff)
downloadscons-6bfaca59f89cf1b90bbe55f5c94e625fbd26a745.tar.gz
Fix premature SyntaxError on Python 3
This allows to show correct message for Python 3 users
-rw-r--r--src/script/scons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/scons.py b/src/script/scons.py
index 0c7b44cc..e522f575 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