##// END OF EJS Templates
tests: avoid implicit bytes -> unicode -> bytes roundtrip on Python 2...
Manuel Jacob -
r44958:408a4eb4 default
parent child Browse files
Show More
@@ -1165,10 +1165,7 b' class Test(unittest.TestCase):'
1165 1165 if self._keeptmpdir:
1166 1166 log(
1167 1167 '\nKeeping testtmp dir: %s\nKeeping threadtmp dir: %s'
1168 % (
1169 self._testtmp.decode('utf-8'),
1170 self._threadtmp.decode('utf-8'),
1171 )
1168 % (_bytes2sys(self._testtmp), _bytes2sys(self._threadtmp),)
1172 1169 )
1173 1170 else:
1174 1171 try:
General Comments 0
You need to be logged in to leave comments. Login now