summaryrefslogtreecommitdiffstats
path: root/test/Errors/Exception.py
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2016-01-01 15:59:23 (GMT)
committerRussel Winder <russel@winder.org.uk>2016-01-01 15:59:23 (GMT)
commit3f637329635c089bdca30bb4b0e23334d12866b3 (patch)
tree4b30c7fe89b85380b9c825c906e2745c4d7c96d1 /test/Errors/Exception.py
parent7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb (diff)
downloadSCons-3f637329635c089bdca30bb4b0e23334d12866b3.zip
SCons-3f637329635c089bdca30bb4b0e23334d12866b3.tar.gz
SCons-3f637329635c089bdca30bb4b0e23334d12866b3.tar.bz2
Some more statement to function transforms.
Diffstat (limited to 'test/Errors/Exception.py')
-rw-r--r--test/Errors/Exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Errors/Exception.py b/test/Errors/Exception.py
index cc36035..30404fc 100644
--- a/test/Errors/Exception.py
+++ b/test/Errors/Exception.py
@@ -30,7 +30,7 @@ test = TestSCons.TestSCons(match = TestSCons.match_re_dotall)
test.write('SConstruct', """\
def foo(env, target, source):
- print str(target[0])
+ print(str(target[0]))
open(str(target[0]), 'wt').write('foo')
def exit(env, target, source):