summaryrefslogtreecommitdiffstats
path: root/test/Move.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Move.py')
-rw-r--r--test/Move.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Move.py b/test/Move.py
index d83a5cd..b58fa34 100644
--- a/test/Move.py
+++ b/test/Move.py
@@ -37,10 +37,9 @@ Execute(Move('f1.out', 'f1.in'))
Execute(Move('File-f1.out', File('f1.in-File')))
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 = Action(cat)
env = Environment()