summaryrefslogtreecommitdiffstats
path: root/bin/Command.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-20 19:06:28 (GMT)
committerSteven Knight <knight@baldmt.com>2010-05-20 19:06:28 (GMT)
commitde6b9527a9cd1a5385c414e984dcc47fcb21a71e (patch)
treeaafaf6e6bf3180dcd94896fec8b8eb2f71d93c03 /bin/Command.py
parent4b3a032823160c0c4560a4644223691ee4f12fc7 (diff)
downloadSCons-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/Command.py')
-rw-r--r--bin/Command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/Command.py b/bin/Command.py
index 28fb110..8702f51 100644
--- a/bin/Command.py
+++ b/bin/Command.py
@@ -14,7 +14,7 @@ class Usage(Exception):
def __init__(self, msg):
self.msg = msg
-class CommandRunner:
+class CommandRunner(object):
"""
Representation of a command to be executed.
"""