author | Matt Mackall <mpm@selenic.com> |
Fri, 07 May 2010 14:19:14 -0500 | |
changeset 11117 | dd543e8da87e |
parent 11116 | 2a857f9d2c6c |
child 11118 | 24f904ae5a26 |
--- a/mercurial/subrepo.py Thu May 06 15:17:00 2010 -0300 +++ b/mercurial/subrepo.py Fri May 07 14:19:14 2010 -0500 @@ -145,7 +145,7 @@ parent = parent[:-1] r = urlparse.urlparse(parent + '/' + source) r = urlparse.urlunparse((r[0], r[1], - posixpath.normpath(r.path), + posixpath.normpath(r[2]), r[3], r[4], r[5])) return r return posixpath.normpath(os.path.join(parent, repo._subsource))