summaryrefslogtreecommitdiffstats
path: root/test/Repository/option-c.py
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2016-01-01 16:21:10 (GMT)
committerRussel Winder <russel@winder.org.uk>2016-01-01 16:21:10 (GMT)
commit7a6018983cf716374f2c7bf3b48e3f386bcaadd9 (patch)
treec6df1e880ccd1897ce0bec1476e6b1e588454637 /test/Repository/option-c.py
parent3f637329635c089bdca30bb4b0e23334d12866b3 (diff)
downloadSCons-7a6018983cf716374f2c7bf3b48e3f386bcaadd9.zip
SCons-7a6018983cf716374f2c7bf3b48e3f386bcaadd9.tar.gz
SCons-7a6018983cf716374f2c7bf3b48e3f386bcaadd9.tar.bz2
Some more statement to function transforms.
Diffstat (limited to 'test/Repository/option-c.py')
-rw-r--r--test/Repository/option-c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Repository/option-c.py b/test/Repository/option-c.py
index ea989c2..c06c7d8 100644
--- a/test/Repository/option-c.py
+++ b/test/Repository/option-c.py
@@ -65,7 +65,7 @@ test.write(['repository', 'SConstruct'], r"""
def copy(env, source, target):
source = str(source[0])
target = str(target[0])
- print 'copy() < %s > %s' % (source, target)
+ print('copy() < %s > %s' % (source, target))
open(target, "wb").write(open(source, "rb").read())
Build = Builder(action=copy)