From da6d4138160e27aa34f80b6f48ba9e331a69aa77 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Mon, 9 May 2016 15:39:27 -0700 Subject: Fixed print()'s --- test/SConstruct.py | 6 +++--- 1 file 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 = ".", -- cgit v0.12