Mercurial > public > mercurial-scm > hg-stable
diff mercurial/sshrepo.py @ 13827:f1823b9f073b
url: nuke some newly-introduced underbars in identifiers
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 31 Mar 2011 10:43:53 -0500 |
parents | d16894e29f91 |
children | 97ed99d1f419 |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Wed Mar 30 20:03:05 2011 -0700 +++ b/mercurial/sshrepo.py Thu Mar 31 10:43:53 2011 -0500 @@ -23,7 +23,7 @@ self._url = path self.ui = ui - u = url.url(path, parse_query=False, parse_fragment=False) + u = url.url(path, parsequery=False, parsefragment=False) if u.scheme != 'ssh' or not u.host or u.path is None: self._abort(error.RepoError(_("couldn't parse location %s") % path))