changeset 30617 | d623cc6b3742 |
parent 30327 | 365812902904 |
child 30642 | 344e68882cd3 |
--- a/mercurial/scmwindows.py Sat Dec 17 19:36:40 2016 +0530 +++ b/mercurial/scmwindows.py Sat Dec 17 19:47:17 2016 +0530 @@ -4,6 +4,7 @@ from . import ( osutil, + pycompat, util, win32, ) @@ -33,7 +34,7 @@ if not isinstance(value, str) or not value: return rcpath value = util.localpath(value) - for p in value.split(os.pathsep): + for p in value.split(pycompat.ospathsep): if p.lower().endswith('mercurial.ini'): rcpath.append(p) elif os.path.isdir(p):