From 0adf38e02eccb6bebebcc3a329c077cefba52664 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 5 Dec 2010 10:35:00 +0100 Subject: [PATCH] Py3 fix in test runner --- runtests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtests.py b/runtests.py index 8a2b9cd1..5f798757 100644 --- a/runtests.py +++ b/runtests.py @@ -743,9 +743,9 @@ class EndToEndTest(unittest.TestCase): out, err = p.communicate() res = p.returncode if res != 0: - print command - print out - print err + print(command) + print(out) + print(err) else: res = os.system(command) self.assertEqual(0, res, "non-zero exit status") -- 2.26.2