From: stevenknight Date: Sun, 12 Oct 2008 00:27:30 +0000 (+0000) Subject: Fix intended tuple syntax (for Python 2.2 and before). X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c34c9be0724e922a383e0ac9c237adccde65c1a0;p=scons.git Fix intended tuple syntax (for Python 2.2 and before). git-svn-id: http://scons.tigris.org/svn/scons/trunk@3676 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/test/import.py b/test/import.py index 2766d772..a0ab0fbf 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())