diff options
author | Guido van Rossum <guido@python.org> | 2000-02-25 11:44:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-25 11:44:03 (GMT) |
commit | 3af7b050a33b4d22260c01ce6b6700e1159edce0 (patch) | |
tree | d8d12b3dbd7a7732d61497b335fef4200df0efe3 /Lib/cgi.py | |
parent | c00a938be8734e1831396d3967cdb2deb50c7a95 (diff) | |
download | cpython-3af7b050a33b4d22260c01ce6b6700e1159edce0.zip cpython-3af7b050a33b4d22260c01ce6b6700e1159edce0.tar.gz cpython-3af7b050a33b4d22260c01ce6b6700e1159edce0.tar.bz2 |
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
@@ -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 |