Commit 773d7dff authored by Gregory P. Smith's avatar Gregory P. Smith

fix "BytesWarning: str() on a bytes instance"

parent b740e76a
......@@ -801,7 +801,8 @@ class ProcessTestCase(BaseTestCase):
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
self.assertEqual(0, p.returncode, "sigchild_ignore.py exited"
" non-zero with this error:\n%s" % stderr)
" non-zero with this error:\n%s" %
stderr.decode('utf8'))
#
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment