From e179b10881ed0e61226a500ef45e35b76dbe2b4b Mon Sep 17 00:00:00 2001 From: Craig Rodrigues Date: Thu, 9 Mar 2017 22:34:46 -0800 Subject: Use print() function to fix py2/3 --- test/SCONS_LIB_DIR.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/SCONS_LIB_DIR.py b/test/SCONS_LIB_DIR.py index 95a377a..65ec3de 100644 --- a/test/SCONS_LIB_DIR.py +++ b/test/SCONS_LIB_DIR.py @@ -31,8 +31,10 @@ test = TestSCons.TestSCons() test.subdir('SCons') test.write(['SCons','Script.py'], """ +from __future__ import print_function + def main (): - print "SCons.Script" + print("SCons.Script") """) test.write(['SCons','__init__.py'], """ -- cgit v0.12