diff options
author | William Deegan <bill@baddogconsulting.com> | 2015-07-24 14:38:47 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2015-07-24 14:38:47 (GMT) |
commit | 3903a58a576f0244206f123f8a263b4623f2e0d0 (patch) | |
tree | 918fd14eec199404f6896ea62ac23b141d1d2f7a | |
parent | 5eb3084543a3b092ebef097409c991f2956cca7c (diff) | |
parent | a8d0d85f212a0f48016cd6db69a2df4fb8d1921a (diff) | |
download | SCons-3903a58a576f0244206f123f8a263b4623f2e0d0.zip SCons-3903a58a576f0244206f123f8a263b4623f2e0d0.tar.gz SCons-3903a58a576f0244206f123f8a263b4623f2e0d0.tar.bz2 |
Merged in techtonik/scons (pull request #239)
Fix premature SyntaxError on Python 3
-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 |