summaryrefslogtreecommitdiff
path: root/test/Progress
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-20 05:03:44 +0000
committerSteven Knight <knight@baldmt.com>2010-05-20 05:03:44 +0000
commitf4d0f5a91828a1edd8bd1162b648592f8000d03a (patch)
tree5d37d9cbc3e7d2165c36cd0917cb6a2515adda1e /test/Progress
parent9ecd62512d165b4a26c0fc5a4e64bda276f34155 (diff)
downloadscons-f4d0f5a91828a1edd8bd1162b648592f8000d03a.tar.gz
Convert old-style classes in test scripts to new-style classes.
Diffstat (limited to 'test/Progress')
-rw-r--r--test/Progress/object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Progress/object.py b/test/Progress/object.py
index 25c53cf8..2886d06c 100644
--- a/test/Progress/object.py
+++ b/test/Progress/object.py
@@ -36,7 +36,7 @@ test.write('SConstruct', """\
import sys
env = Environment()
env['BUILDERS']['C'] = Builder(action=Copy('$TARGET', '$SOURCE'))
-class my_progress:
+class my_progress(object):
count = 0
def __call__(self, node, *args, **kw):
self.count = self.count + 1