Fix a broken r.append(name, value) call, spotted by Tim.
This commit is contained in:
parent
c00a938be8
commit
3af7b050a3
|
@ -600,7 +600,7 @@ def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
|
|||
continue
|
||||
name = urllib.unquote(string.replace(nv[0], '+', ' '))
|
||||
value = urllib.unquote(string.replace(nv[1], '+', ' '))
|
||||
r.append(name, value)
|
||||
r.append((name, value))
|
||||
|
||||
return r
|
||||
|
||||
|
|
Loading…
Reference in New Issue