support ';' in passwords

This commit is contained in:
ed
2023-05-06 18:54:55 +00:00
parent 8b0e66122f
commit 4ee81af8f6
3 changed files with 4 additions and 5 deletions

View File

@@ -331,7 +331,7 @@ class HttpCli(object):
for k in arglist.split("&"):
if "=" in k:
k, zs = k.split("=", 1)
uparam[k.lower()] = zs.strip()
uparam[k.lower()] = unquotep(zs.strip().replace("+", " "))
else:
uparam[k.lower()] = ""