summaryrefslogtreecommitdiff
path: root/test/ARGLIST.py
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2016-01-01 15:01:27 +0000
committerRussel Winder <russel@winder.org.uk>2016-01-01 15:01:27 +0000
commit533ab8598e0f32928589a5f8061dbe191a095b46 (patch)
tree7fdc13c5731ee72d402b6ac19c52b506df77d574 /test/ARGLIST.py
parent0b1be9f0d5520e3a541a7c4d026ba4145a618dec (diff)
downloadscons-533ab8598e0f32928589a5f8061dbe191a095b46.tar.gz
Some more print statements to functions.
Diffstat (limited to 'test/ARGLIST.py')
-rw-r--r--test/ARGLIST.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ARGLIST.py b/test/ARGLIST.py
index 186ad069..e246ba32 100644
--- a/test/ARGLIST.py
+++ b/test/ARGLIST.py
@@ -31,7 +31,7 @@ test = TestSCons.TestSCons()
test.write('SConstruct', """
i = 0
for key, value in ARGLIST:
- print "%d: %s = %s" % (i, key, value)
+ print("%d: %s = %s" % (i, key, value))
i = i + 1
""")