Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / Repository / VariantDir.py
index 0abda0bd00d945908f36b7c8c2458fd437d20909..ec723c824155a52bf6dafbd48dd3b0c54c8656f2 100644 (file)
@@ -47,7 +47,7 @@ SConscript('build1/SConscript')
 test.write(['repository', 'src', 'SConscript'], r"""
 def cat(env, source, target):
     target = str(target[0])
-    source = map(str, source)
+    source = list(map(str, source))
     print 'cat(%s) > %s' % (source, target)
     f = open(target, "wb")
     for src in source: