# HG changeset patch # User Matt Mackall # Date 1273259954 18000 # Node ID dd543e8da87ea4bdd75cbbe91c131e157083ad75 # Parent 2a857f9d2c6c694af3d7eb2d591f1ba5bf62a793 subrepo: fix 2.5ism in url parsing diff -r 2a857f9d2c6c -r dd543e8da87e mercurial/subrepo.py --- 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))