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 | 4158d77b02c879ffd8ea7f82a5c2b3b8d69cf630 (patch) | |
| tree | 918fd14eec199404f6896ea62ac23b141d1d2f7a /src/script/scons.py | |
| parent | 85f7e408f935ab89e0b1bdafa80aa28da6b09e2e (diff) | |
| parent | 7de7bbe1e48e51386ec466618fdbf6277ad3f934 (diff) | |
| download | SCons-4158d77b02c879ffd8ea7f82a5c2b3b8d69cf630.zip SCons-4158d77b02c879ffd8ea7f82a5c2b3b8d69cf630.tar.gz SCons-4158d77b02c879ffd8ea7f82a5c2b3b8d69cf630.tar.bz2 | |
Merged in techtonik/scons (pull request #239)
Fix premature SyntaxError on Python 3
Diffstat (limited to 'src/script/scons.py')
| -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 |
