# HG changeset patch # User Matt Harbison # Date 1548473565 18000 # Node ID baffda74891cb8cdcdba11401b4fcb55bc9412ef # Parent ed99c7b521064580cf3c84e227eeb702f4f32d24 py3: fix a bytes/str mingling in test-install.t diff -r ed99c7b52106 -r baffda74891c tests/test-install.t --- a/tests/test-install.t Fri Jan 25 21:19:51 2019 -0500 +++ b/tests/test-install.t Fri Jan 25 22:32:45 2019 -0500 @@ -188,10 +188,9 @@ > stderr=subprocess.PIPE) > output = proc.communicate()[0] > - > slash = '/' > for line in output.splitlines(): > if os.name == 'nt': - > yield line.replace(os.sep, slash) + > yield line.replace(pycompat.sysbytes(os.sep), b'/') > else: > yield line >