diff options
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py index efa492a0a1..d69da04fab 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -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 |