# HG changeset patch # User timeless # Date 2016-03-30 05:26:51 # Node ID c756b67917600078fb337f065609b301042d3460 # Parent d001d6d27570e3884a035f06378591fcc80ae0b6 py3: convert prereq bytes to string in run-tests Without this, run-tests would generate: WARNING: Did not find prerequisite tool: b'python3.5' diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -2518,7 +2518,8 @@ class TestRunner(object): if found: vlog("# Found prerequisite", p, "at", found) else: - print("WARNING: Did not find prerequisite tool: %s " % p) + print("WARNING: Did not find prerequisite tool: %s " % + p.decode("utf-8")) if __name__ == '__main__': runner = TestRunner()