diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-05-09 22:36:18 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-05-09 22:36:18 (GMT) |
commit | 9cc6b7b615b8b22a2a747fbb2d404d87b4091358 (patch) | |
tree | f95350e03dd7a682693284f99a88d9b9e544236f | |
parent | 144d9dd9bd444d5cfab2b1094775d59ccc758882 (diff) | |
download | SCons-9cc6b7b615b8b22a2a747fbb2d404d87b4091358.zip SCons-9cc6b7b615b8b22a2a747fbb2d404d87b4091358.tar.gz SCons-9cc6b7b615b8b22a2a747fbb2d404d87b4091358.tar.bz2 |
Fixed embedded SConscript/SConstruct's usage of print. Had no parens.
-rw-r--r-- | test/SConscript/env.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/SConscript/env.py b/test/SConscript/env.py index 42963ff..a16866c 100644 --- a/test/SConscript/env.py +++ b/test/SConscript/env.py @@ -36,7 +36,7 @@ test.subdir('sub1', 'sub2') test.write("SConstruct", """\ env = Environment(SUB1='sub1', SUB2='sub2') -print "SConstruct" +print("SConstruct") x = 'xxx' y = 'yyy' env.Export(["x", "y"]) @@ -49,15 +49,15 @@ env.SConscript(['s3', 's4']) test.write(['sub1', 'SConscript'], """\ env = Environment() env.Import("x") -print "sub1/SConscript" -print "x =", x +print("sub1/SConscript") +print("x =", x) """) test.write(['sub2', 'SConscript'], """\ env = Environment() env.Import("y") -print "sub2/SConscript" -print "y =", y +print("sub2/SConscript") +print("y =", y) """) test.write('s1', "\n") |