Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / Repository / targets.py
index d39504789c57e18b0d2642dabce9ab22bc3f9054..62f4785aea6a3c9304eaf128de78c400fd39b1da 100644 (file)
@@ -42,7 +42,7 @@ opts = "-Y " + test.workpath('repository')
 test.write(['repository', 'SConstruct'], """
 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: