Python3 fix
This commit is contained in:
parent
1e255a72a8
commit
692d31d221
1 changed files with 3 additions and 3 deletions
|
@ -29,9 +29,9 @@ class TestModArgsDwim(unittest.TestCase):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _debug(self, mod, args, to):
|
def _debug(self, mod, args, to):
|
||||||
print "RETURNED module = %s" % mod
|
print("RETURNED module = {0}".format(mod))
|
||||||
print " args = %s" % args
|
print(" args = {0}".format(args))
|
||||||
print " to = %s" % to
|
print(" to = {0}".format(to))
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in a new issue