diff options
author | Russel Winder <russel@winder.org.uk> | 2016-01-01 15:59:23 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2016-01-01 15:59:23 (GMT) |
commit | 3f637329635c089bdca30bb4b0e23334d12866b3 (patch) | |
tree | 4b30c7fe89b85380b9c825c906e2745c4d7c96d1 /test/Errors/Exception.py | |
parent | 7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb (diff) | |
download | SCons-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.py | 2 |
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): |