summaryrefslogtreecommitdiffstats
path: root/test/suffixes.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suffixes.py')
-rw-r--r--test/suffixes.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/suffixes.py b/test/suffixes.py
index c6ca1d0..74655ec 100644
--- a/test/suffixes.py
+++ b/test/suffixes.py
@@ -35,10 +35,9 @@ test = TestSCons.TestSCons()
test.write('SConstruct', """
def cat(env, source, target):
target = str(target[0])
- source = map(str, source)
f = open(target, "wb")
for src in source:
- f.write(open(src, "rb").read())
+ f.write(open(str(src), "rb").read())
f.close()
Cat = Builder(action=cat, suffix='.out')
env = Environment(BUILDERS = {'Cat':Cat})