summaryrefslogtreecommitdiffstats
path: root/test/Repository/targets.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Repository/targets.py')
-rw-r--r--test/Repository/targets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Repository/targets.py b/test/Repository/targets.py
index d395047..62f4785 100644
--- a/test/Repository/targets.py
+++ b/test/Repository/targets.py
@@ -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: