hgext/win32mbcs.py
changeset 30616 6f9fcd29e290
parent 30476 8a9681b963a3
child 30640 7a3e67bfa417
--- a/hgext/win32mbcs.py	Sat Dec 17 20:14:24 2016 +0530
+++ b/hgext/win32mbcs.py	Sat Dec 17 20:24:46 2016 +0530
@@ -53,6 +53,7 @@
 from mercurial import (
     encoding,
     error,
+    pycompat,
 )
 
 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
@@ -97,7 +98,7 @@
     except UnicodeError:
         us = s
     if us and us[-1] not in ':/\\':
-        s += os.sep
+        s += pycompat.ossep
     return s