##// END OF EJS Templates
py3: fix bytes and str mixup in run-tests...
Sushil khanchi -
r46013:c6e332a4 default
parent child Browse files
Show More
@@ -3347,7 +3347,8 b' class TestRunner(object):'
3347 else:
3347 else:
3348 errpath = b'%s.err' % test['path']
3348 errpath = b'%s.err' % test['path']
3349 if self.options.outputdir:
3349 if self.options.outputdir:
3350 errpath = os.path.join(self.options.outputdir, errpath)
3350 self._outputdir = canonpath(_sys2bytes(self.options.outputdir))
3351 errpath = os.path.join(self._outputdir, errpath)
3351 return errpath
3352 return errpath
3352
3353
3353 def _getport(self, count):
3354 def _getport(self, count):
General Comments 0
You need to be logged in to leave comments. Login now