diff options
author | anatoly techtonik <techtonik@gmail.com> | 2015-06-20 14:49:24 (GMT) |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2015-06-20 14:49:24 (GMT) |
commit | 7de7bbe1e48e51386ec466618fdbf6277ad3f934 (patch) | |
tree | 0866484f6f978e2ca29efc4266111029e8c100f1 /src/script | |
parent | 1c3e0ef0c5392db9a23dc766e8cae598aeb178ad (diff) | |
download | SCons-7de7bbe1e48e51386ec466618fdbf6277ad3f934.zip SCons-7de7bbe1e48e51386ec466618fdbf6277ad3f934.tar.gz SCons-7de7bbe1e48e51386ec466618fdbf6277ad3f934.tar.bz2 |
Fix premature SyntaxError on Python 3
This allows to show correct message for Python 3 users
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |