diff options
| author | William Deegan <bill@baddogconsulting.com> | 2016-05-09 22:39:27 (GMT) |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2016-05-09 22:39:27 (GMT) |
| commit | da6d4138160e27aa34f80b6f48ba9e331a69aa77 (patch) | |
| tree | 8c2bde9540a153f237f8d09532174826123c1d6c | |
| parent | d3c4aa79b66572dacc4be76fc7c54354c726ae3b (diff) | |
| download | SCons-da6d4138160e27aa34f80b6f48ba9e331a69aa77.zip SCons-da6d4138160e27aa34f80b6f48ba9e331a69aa77.tar.gz SCons-da6d4138160e27aa34f80b6f48ba9e331a69aa77.tar.bz2 | |
Fixed print()'s
| -rw-r--r-- | test/SConstruct.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SConstruct.py b/test/SConstruct.py index 15e1c1b..9b2807f 100644 --- a/test/SConstruct.py +++ b/test/SConstruct.py @@ -41,7 +41,7 @@ wpath = test.workpath() test.write('sconstruct', """ import os -print "sconstruct", os.getcwd() +print("sconstruct", os.getcwd()) """) test.run(arguments = ".", @@ -51,7 +51,7 @@ test.run(arguments = ".", test.write('Sconstruct', """ import os -print "Sconstruct", os.getcwd() +print("Sconstruct", os.getcwd()) """) test.run(arguments = ".", @@ -60,7 +60,7 @@ test.run(arguments = ".", test.write('SConstruct', """ import os -print "SConstruct", os.getcwd() +print("SConstruct", os.getcwd()) """) test.run(arguments = ".", |
