summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-07-09 10:52:29 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-07-09 10:52:29 -0400
commit221822595b4e040c66937a3f9574623a9756b736 (patch)
tree662187f475c49a154c35741cfd342ecab7401396
parent831cbf4e7ef69eca24034425a887aa774f765fd8 (diff)
downloadpython-coveragepy-git-221822595b4e040c66937a3f9574623a9756b736.tar.gz
Py3k: fix more print statements.
-rw-r--r--test/farm/run/src/xxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/farm/run/src/xxx b/test/farm/run/src/xxx
index 78f7d668..8f727f08 100644
--- a/test/farm/run/src/xxx
+++ b/test/farm/run/src/xxx
@@ -5,4 +5,4 @@ b = 4
if not b:
c = 6
d = 7
-print "xxx:", a, b, c, d
+print("xxx: %r %r %r %r" % (a, b, c, d))