From 692d31d2215914260fbaf6d2be87afa637ea2ab8 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Sun, 12 Oct 2014 10:49:42 -0400 Subject: [PATCH] Python3 fix --- test/v2/parsing/test_mod_args.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/v2/parsing/test_mod_args.py b/test/v2/parsing/test_mod_args.py index e077a55d3bc..ddd5c6f6d4a 100644 --- a/test/v2/parsing/test_mod_args.py +++ b/test/v2/parsing/test_mod_args.py @@ -29,9 +29,9 @@ class TestModArgsDwim(unittest.TestCase): pass def _debug(self, mod, args, to): - print "RETURNED module = %s" % mod - print " args = %s" % args - print " to = %s" % to + print("RETURNED module = {0}".format(mod)) + print(" args = {0}".format(args)) + print(" to = {0}".format(to)) def tearDown(self): pass