summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-10-12 00:27:30 (GMT)
committerSteven Knight <knight@baldmt.com>2008-10-12 00:27:30 (GMT)
commit779f4d3ccfbcf0f85ca9bbbd9ed93be712e16bde (patch)
tree943c919acdc4ca78f6cf278a488e753e1dedd1c7 /test
parentdf4831362350cc10b005daac666661e8cf0b400e (diff)
downloadSCons-779f4d3ccfbcf0f85ca9bbbd9ed93be712e16bde.zip
SCons-779f4d3ccfbcf0f85ca9bbbd9ed93be712e16bde.tar.gz
SCons-779f4d3ccfbcf0f85ca9bbbd9ed93be712e16bde.tar.bz2
Fix intended tuple syntax (for Python 2.2 and before).
Diffstat (limited to 'test')
-rw-r--r--test/import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/import.py b/test/import.py
index 2766d77..a0ab0fb 100644
--- a/test/import.py
+++ b/test/import.py
@@ -232,7 +232,7 @@ SCons.Tool.%(tool)s.generate(env)
failures = []
for tool in tools:
- if tool[0] in '0123456789' or '+' in tool or tool in ('as'):
+ if tool[0] in '0123456789' or '+' in tool or tool in ('as',):
test.write('SConstruct', indirect_import % locals())
else:
test.write('SConstruct', direct_import % locals())