diff options
author | Guido van Rossum <guido@python.org> | 2000-02-25 11:44:03 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-25 11:44:03 +0000 |
commit | 3af7b050a33b4d22260c01ce6b6700e1159edce0 (patch) | |
tree | d8d12b3dbd7a7732d61497b335fef4200df0efe3 /Lib/cgi.py | |
parent | c00a938be8734e1831396d3967cdb2deb50c7a95 (diff) | |
download | cpython-git-3af7b050a33b4d22260c01ce6b6700e1159edce0.tar.gz |
Fix a broken r.append(name, value) call, spotted by Tim.
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 |