diff options
| author | William Deegan <bill@baddogconsulting.com> | 2015-02-26 05:02:49 (GMT) |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2015-02-26 05:02:49 (GMT) |
| commit | 98bb69c7c9e13ea57ae7e6e8db4740a4dd43ed16 (patch) | |
| tree | db753a203a4e50c882622f23263ddb698e9ff16e /src | |
| parent | a7d764ed831fa3243aa0bd3307f641e1e1f9f8a8 (diff) | |
| download | SCons-98bb69c7c9e13ea57ae7e6e8db4740a4dd43ed16.zip SCons-98bb69c7c9e13ea57ae7e6e8db4740a4dd43ed16.tar.gz SCons-98bb69c7c9e13ea57ae7e6e8db4740a4dd43ed16.tar.bz2 | |
remove extra parens causing syntax error
Diffstat (limited to 'src')
| -rw-r--r-- | src/engine/SCons/Script/Main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py index 3ef88c7..556ddd3 100644 --- a/src/engine/SCons/Script/Main.py +++ b/src/engine/SCons/Script/Main.py @@ -373,7 +373,7 @@ class CleanTask(SCons.Taskmaster.AlwaysTask): # the file not existing. In either case, print a # message and keep going to try to remove as many # targets aa possible. - print(("scons: Could not remove '%s':" % str(t), e.strerror) + print("scons: Could not remove '%s':" % str(t), e.strerror) else: if removed: display("Removed " + str(t)) |
