diff options
Diffstat (limited to 'test/RCS/transparent.py')
-rw-r--r-- | test/RCS/transparent.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/RCS/transparent.py b/test/RCS/transparent.py index 397017c..2ebde9a 100644 --- a/test/RCS/transparent.py +++ b/test/RCS/transparent.py @@ -95,10 +95,9 @@ ENV = {'PATH' : os.environ['PATH'], 'LOGNAME' : logname} 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() DefaultEnvironment()['ENV'] = ENV DefaultEnvironment()['RCS_COFLAGS'] = '-l' |