summaryrefslogtreecommitdiffstats
path: root/test/exitfns.py
diff options
context:
space:
mode:
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)