diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-04-09 16:14:38 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-04-09 16:14:38 (GMT) |
commit | 1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de (patch) | |
tree | fdc68838cd90dbb2b9481340770506bf938cb280 /src/script | |
parent | c98ae452ff8c03190005739023ff5ba11755aab2 (diff) | |
parent | 11cea9c954aff5ce81d85de454dd4547e980b705 (diff) | |
download | SCons-1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de.zip SCons-1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de.tar.gz SCons-1c4bb9541d7acf1c73a8b2071bf57bdd5ea850de.tar.bz2 |
Merged in techtonik/scons (pull request #308)
Improve a few docs and messages
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/scons.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/scons.py b/src/script/scons.py index e522f57..1b9a824 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -188,8 +188,8 @@ sys.path = libs + sys.path if __name__ == "__main__": try: import SCons.Script - except: - print("Import failed. Unable to find SCons files in:") + except ImportError: + print("SCons import failed. Unable to find engine files in:") for path in libs: print(" %s" % path) raise |