Mercurial > hg
changeset 19210:865beb849720 stable
dirstate: don't overnormalize for ui.slash
This should fix the issue exposed by debugpathcomplete on the buildbot.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 17 May 2013 14:31:06 -0500 |
parents | 15aef461facd |
children | 0ec31231afad 2b4344f23b44 |
files | mercurial/dirstate.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/dirstate.py Wed May 15 21:36:19 2013 -0500 +++ b/mercurial/dirstate.py Fri May 17 14:31:06 2013 -0500 @@ -181,7 +181,7 @@ cwd = self.getcwd() path = util.pathto(self._root, cwd, f) if self._slash: - return util.normpath(path) + return util.pconvert(path) return path def __getitem__(self, key):