##// END OF EJS Templates
tests: avoid implicit conversion of str to unicode...
Manuel Jacob -
r44934:fc70291f default
parent child Browse files
Show More
@@ -3008,7 +3008,7 b' class TestRunner(object):'
3008 3008 os.makedirs(self._tmpbindir)
3009 3009
3010 3010 normbin = os.path.normpath(os.path.abspath(whg))
3011 normbin = normbin.replace(os.sep.encode('ascii'), b'/')
3011 normbin = normbin.replace(_bytespath(os.sep), b'/')
3012 3012
3013 3013 # Other Python scripts in the test harness need to
3014 3014 # `import mercurial`. If `hg` is a Python script, we assume
General Comments 0
You need to be logged in to leave comments. Login now