diff options
Diffstat (limited to 'test/BitKeeper/BITKEEPERCOMSTR.py')
-rw-r--r-- | test/BitKeeper/BITKEEPERCOMSTR.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/BitKeeper/BITKEEPERCOMSTR.py b/test/BitKeeper/BITKEEPERCOMSTR.py index a8207c6..311ef4d 100644 --- a/test/BitKeeper/BITKEEPERCOMSTR.py +++ b/test/BitKeeper/BITKEEPERCOMSTR.py @@ -58,10 +58,9 @@ for f in sys.argv[1:]: 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() env = Environment(TOOLS = ['default', 'BitKeeper'], BUILDERS={'Cat':Builder(action=cat)}, |