summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-05-09 22:43:40 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2016-05-09 22:43:40 (GMT)
commitac02a52b31e3e12271a9929e45fbecc10c4113c8 (patch)
tree9d408d7b69a1a198701c3972f32f56f0f4ffd338 /test
parent2efa4c01f3d8010adf98ab2ead5c5a4534544766 (diff)
downloadSCons-ac02a52b31e3e12271a9929e45fbecc10c4113c8.zip
SCons-ac02a52b31e3e12271a9929e45fbecc10c4113c8.tar.gz
SCons-ac02a52b31e3e12271a9929e45fbecc10c4113c8.tar.bz2
Fixed print()'s
Diffstat (limited to 'test')
-rw-r--r--test/Scanner/empty-implicit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Scanner/empty-implicit.py b/test/Scanner/empty-implicit.py
index 0323240..45fe952 100644
--- a/test/Scanner/empty-implicit.py
+++ b/test/Scanner/empty-implicit.py
@@ -37,7 +37,7 @@ test.write('SConstruct', r"""
import os.path
def scan(node, env, envkey, arg):
- print 'XScanner: node =', os.path.split(str(node))[1]
+ print('XScanner: node =', os.path.split(str(node))[1])
return []
def exists_check(node, env):
@@ -52,7 +52,7 @@ XScanner = Scanner(name = 'XScanner',
def echo(env, target, source):
t = os.path.split(str(target[0]))[1]
s = os.path.split(str(source[0]))[1]
- print 'create %s from %s' % (t, s)
+ print('create %s from %s' % (t, s))
open(t, 'wb').write(open(s, 'rb').read())
Echo = Builder(action = Action(echo, None),