mercurial/pathutil.py
changeset 34254 cd022a11ec83
parent 34131 0fa781320203
child 34965 f445b10dc7fb
--- a/mercurial/pathutil.py	Sun Sep 17 12:23:16 2017 +0900
+++ b/mercurial/pathutil.py	Sun Sep 17 12:26:42 2017 +0900
@@ -203,9 +203,9 @@
 
     See also issue3033 for detail about need of this function.
 
-    >>> normasprefix(b'/foo/bar').replace(os.sep, b'/')
+    >>> normasprefix(b'/foo/bar').replace(pycompat.ossep, b'/')
     '/foo/bar/'
-    >>> normasprefix(b'/').replace(os.sep, b'/')
+    >>> normasprefix(b'/').replace(pycompat.ossep, b'/')
     '/'
     '''
     d, p = os.path.splitdrive(path)