diff options
author | Steven Knight <knight@baldmt.com> | 2010-05-20 19:06:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-05-20 19:06:28 (GMT) |
commit | de6b9527a9cd1a5385c414e984dcc47fcb21a71e (patch) | |
tree | aafaf6e6bf3180dcd94896fec8b8eb2f71d93c03 /bin/time-scons.py | |
parent | 4b3a032823160c0c4560a4644223691ee4f12fc7 (diff) | |
download | SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.zip SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.tar.gz SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.tar.bz2 |
vert old-style classes in bin/* scripts to new-style classes.
Diffstat (limited to 'bin/time-scons.py')
-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 c1c8e8e..c0095e8 100644 --- a/bin/time-scons.py +++ b/bin/time-scons.py @@ -46,7 +46,7 @@ TimeSCons_revision = 4569 TimeSCons_pieces = ['QMTest', 'timings', 'runtest.py'] -class CommandRunner: +class CommandRunner(object): """ Executor class for commands, including "commands" implemented by Python functions. |