##// END OF EJS Templates
py3: add b'' to some run-tests.py strings for Windows...
Matt Harbison -
r39625:4eb0f245 default
parent child Browse files
Show More
@@ -3118,8 +3118,8 b' class TestRunner(object):'
3118 3118 def _checktools(self):
3119 3119 """Ensure tools required to run tests are present."""
3120 3120 for p in self.REQUIREDTOOLS:
3121 if os.name == 'nt' and not p.endswith('.exe'):
3122 p += '.exe'
3121 if os.name == 'nt' and not p.endswith(b'.exe'):
3122 p += b'.exe'
3123 3123 found = self._findprogram(p)
3124 3124 if found:
3125 3125 vlog("# Found prerequisite", p, "at", found)
General Comments 0
You need to be logged in to leave comments. Login now