##// END OF EJS Templates
py3: convert prereq bytes to string in run-tests...
timeless -
r28698:c756b679 default
parent child Browse files
Show More
@@ -2518,7 +2518,8 b' class TestRunner(object):'
2518 if found:
2518 if found:
2519 vlog("# Found prerequisite", p, "at", found)
2519 vlog("# Found prerequisite", p, "at", found)
2520 else:
2520 else:
2521 print("WARNING: Did not find prerequisite tool: %s " % p)
2521 print("WARNING: Did not find prerequisite tool: %s " %
2522 p.decode("utf-8"))
2522
2523
2523 if __name__ == '__main__':
2524 if __name__ == '__main__':
2524 runner = TestRunner()
2525 runner = TestRunner()
General Comments 0
You need to be logged in to leave comments. Login now