Mercurial > public > mercurial-scm > hg-stable
diff mercurial/url.py @ 10484:cadd7e076b69 stable
url: correctly quote '/' in user and password embedded in urls
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Mon, 15 Feb 2010 22:39:36 +0100 |
parents | 95265afff99f |
children | 6f61c480f51c |
line wrap: on
line diff
--- a/mercurial/url.py Mon Feb 15 16:34:59 2010 -0200 +++ b/mercurial/url.py Mon Feb 15 22:39:36 2010 +0100 @@ -51,10 +51,11 @@ else: hostport = host if user: + quote = lambda s: urllib.quote(s, safe='') if passwd: - userpass = urllib.quote(user) + ':' + urllib.quote(passwd) + userpass = quote(user) + ':' + quote(passwd) else: - userpass = urllib.quote(user) + userpass = quote(user) return userpass + '@' + hostport return hostport