summaryrefslogtreecommitdiffstats
path: root/test/exitfns.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-04-25 18:15:37 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-04-25 18:15:37 (GMT)
commit5237b503e74a56d41f127624f5f0c43c431765f5 (patch)
tree9ba0837ffcaa7a71d46c52ebf3aeeb807d6771ba /test/exitfns.py
parentf5218be9c734e97802fbad38eae4ae84b466a80f (diff)
parentc03e43ea38fc2fe24fc40bbf4b45d4d19997c22d (diff)
downloadSCons-5237b503e74a56d41f127624f5f0c43c431765f5.zip
SCons-5237b503e74a56d41f127624f5f0c43c431765f5.tar.gz
SCons-5237b503e74a56d41f127624f5f0c43c431765f5.tar.bz2
Update from default
Diffstat (limited to 'test/exitfns.py')
-rw-r--r--test/exitfns.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/exitfns.py b/test/exitfns.py
index f64969b..d1bda3a 100644
--- a/test/exitfns.py
+++ b/test/exitfns.py
@@ -32,11 +32,11 @@ sconstruct = """
from SCons.exitfuncs import *
def x1():
- print "running x1"
+ print("running x1")
def x2(n):
- print "running x2(%s)" % repr(n)
+ print("running x2(%s)" % repr(n))
def x3(n, kwd=None):
- print "running x3(%s, kwd=%s)" % (repr(n), repr(kwd))
+ print("running x3(%s, kwd=%s)" % (repr(n), repr(kwd)))
register(x3, "no kwd args")
register(x1)