diff options
author | Steven Knight <knight@baldmt.com> | 2009-12-15 23:46:55 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-12-15 23:46:55 (GMT) |
commit | 8b9d8457a92ea9e5942e38de19366c0919d6e0a7 (patch) | |
tree | 37066abe03105f75feb06834c98f8bcedc3c2089 | |
parent | d1f8d0ca797e38e768d3914e690b69f7cd344258 (diff) | |
download | SCons-8b9d8457a92ea9e5942e38de19366c0919d6e0a7.zip SCons-8b9d8457a92ea9e5942e38de19366c0919d6e0a7.tar.gz SCons-8b9d8457a92ea9e5942e38de19366c0919d6e0a7.tar.bz2 |
...and call the correct method.
-rw-r--r-- | bin/time-scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/time-scons.py b/bin/time-scons.py index fc5c711..10684e0 100644 --- a/bin/time-scons.py +++ b/bin/time-scons.py @@ -245,7 +245,7 @@ def do_revisions(cr, opts, branch, revisions, scripts): commands.append(['svn', 'up', '-q', '-r', str(this_revision)] + TimeSCons_pieces) - status = cr.run(commands, stdout=stdout, stderr=stderr) + status = cr.run_list(commands, stdout=stdout, stderr=stderr) if status: return status |