From c34c9be0724e922a383e0ac9c237adccde65c1a0 Mon Sep 17 00:00:00 2001 From: stevenknight Date: Sun, 12 Oct 2008 00:27:30 +0000 Subject: [PATCH] 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 --- test/import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- 2.26.2