mercurial/url.py
branchstable
changeset 10484 cadd7e076b69
parent 10482 95265afff99f
child 10511 6f61c480f51c
--- 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