commit | 3af7b050a33b4d22260c01ce6b6700e1159edce0 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Feb 25 11:44:03 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Feb 25 11:44:03 2000 +0000 |
tree | d8d12b3dbd7a7732d61497b335fef4200df0efe3 | |
parent | c00a938be8734e1831396d3967cdb2deb50c7a95 [diff] |
Fix a broken r.append(name, value) call, spotted by Tim.
diff --git a/Lib/cgi.py b/Lib/cgi.py index efa492a..d69da04 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py
@@ -600,7 +600,7 @@ 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