diff options
Diffstat (limited to 'test/no-arguments.py')
-rw-r--r-- | test/no-arguments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/no-arguments.py b/test/no-arguments.py index 0fa0d8a..e447ff6 100644 --- a/test/no-arguments.py +++ b/test/no-arguments.py @@ -39,7 +39,7 @@ test = TestSCons.TestSCons() test.write('SConstruct', r""" 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: |