summaryrefslogtreecommitdiffstats
path: root/test/CPPPATH/expand-object.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-20 05:03:44 (GMT)
committerSteven Knight <knight@baldmt.com>2010-05-20 05:03:44 (GMT)
commite53ab342686b8a577f9231d91fe3578cbbd6641a (patch)
tree5d37d9cbc3e7d2165c36cd0917cb6a2515adda1e /test/CPPPATH/expand-object.py
parent70ee995e9464e6ffae6ec456f6e8f419a29ce6be (diff)
downloadSCons-e53ab342686b8a577f9231d91fe3578cbbd6641a.zip
SCons-e53ab342686b8a577f9231d91fe3578cbbd6641a.tar.gz
SCons-e53ab342686b8a577f9231d91fe3578cbbd6641a.tar.bz2
Convert old-style classes in test scripts to new-style classes.
Diffstat (limited to 'test/CPPPATH/expand-object.py')
-rw-r--r--test/CPPPATH/expand-object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CPPPATH/expand-object.py b/test/CPPPATH/expand-object.py
index 54e1d39..8c811b7 100644
--- a/test/CPPPATH/expand-object.py
+++ b/test/CPPPATH/expand-object.py
@@ -34,7 +34,7 @@ import TestSCons
test = TestSCons.TestSCons()
test.write('SConstruct', """
-class XXX:
+class XXX(object):
def __init__(self, value):
self.value = value
def __str__(self):