summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/EnvironmentTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-09-22 19:32:13 (GMT)
committerSteven Knight <knight@baldmt.com>2003-09-22 19:32:13 (GMT)
commit16c04783a34ffe9762a39a3fd171dcc4bcccfa80 (patch)
treebdbfc4275590ed5a54651ea912262eb72057906b /src/engine/SCons/EnvironmentTests.py
parent7d5aa5669b5208be12b1a75e7a2b2d290493508e (diff)
downloadSCons-16c04783a34ffe9762a39a3fd171dcc4bcccfa80.zip
SCons-16c04783a34ffe9762a39a3fd171dcc4bcccfa80.tar.gz
SCons-16c04783a34ffe9762a39a3fd171dcc4bcccfa80.tar.bz2
Pre-Python 2 portability fix in new tex.py tool. Portability fix in EnvironmentTests.py.
Diffstat (limited to 'src/engine/SCons/EnvironmentTests.py')
-rw-r--r--src/engine/SCons/EnvironmentTests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/EnvironmentTests.py b/src/engine/SCons/EnvironmentTests.py
index 36f4112..d0e8a37 100644
--- a/src/engine/SCons/EnvironmentTests.py
+++ b/src/engine/SCons/EnvironmentTests.py
@@ -1357,7 +1357,7 @@ class EnvironmentTestCase(unittest.TestCase):
def __init__(self):
self.list = []
def Repository(self, *dirs):
- self.list.extend(dirs)
+ self.list.extend(list(dirs))
def Dir(self, name):
return name
env = Environment(FOO='rrr', BAR='sss')