Commit 3af7b050 authored by Guido van Rossum's avatar Guido van Rossum

Fix a broken r.append(name, value) call, spotted by Tim.

parent c00a938b
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment