diff options
author | William Deegan <bill@baddogconsulting.com> | 2014-03-09 21:36:33 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2014-03-09 21:36:33 (GMT) |
commit | 4c5afd028828a6908b788e67516c1f4aeaec2fb2 (patch) | |
tree | 12a5ac25ecffb5088ccf933e5994ffcd292b7f27 | |
parent | e87878db7237652386593f2f46adbc0c66854566 (diff) | |
download | SCons-4c5afd028828a6908b788e67516c1f4aeaec2fb2.zip SCons-4c5afd028828a6908b788e67516c1f4aeaec2fb2.tar.gz SCons-4c5afd028828a6908b788e67516c1f4aeaec2fb2.tar.bz2 |
remove double reporting of source path per comment by Anatoly in pull feedback
-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 3638fa7..0c7b44c 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -190,7 +190,7 @@ if __name__ == "__main__": import SCons.Script except: print("Import failed. Unable to find SCons files in:") - for path in [source_path] + libs: + for path in libs: print " %s" % path raise |