summaryrefslogtreecommitdiff
path: root/test/preserve-source.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-01-24 16:36:12 +0000
committerWilliam Blevins <wblevins001@gmail.com>2016-01-24 16:36:12 +0000
commit930ae0b1dd083b37bec64c8fa6055792be2a2116 (patch)
tree9d10b6f009624a613c6a78b71736d0416849f329 /test/preserve-source.py
parent6f1a00e0e368ce59e2a8b6b4a088e48f463fe94e (diff)
downloadscons-930ae0b1dd083b37bec64c8fa6055792be2a2116.tar.gz
Resolving a batch of failing tests for python 2.7.
Note: please evaluate python 3.X compliance.
Diffstat (limited to 'test/preserve-source.py')
-rw-r--r--test/preserve-source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/preserve-source.py b/test/preserve-source.py
index 6e090734..b7eccd1e 100644
--- a/test/preserve-source.py
+++ b/test/preserve-source.py
@@ -35,7 +35,7 @@ test.write('SConstruct', r"""
def cat(env, source, target):
target = str(target[0])
source = list(map(str, source))
- print 'cat(%s) > %s' % (source, target)
+ print('cat(%s) > %s' % (source, target))
f = open(target, "wb")
for src in source:
f.write(open(src, "rb").read())