From: Guido van Rossum Date: Fri, 25 Feb 2000 11:44:03 +0000 (+0000) Subject: Fix a broken r.append(name, value) call, spotted by Tim. X-Git-Tag: v1.6a1~357 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3af7b050a33b4d22260c01ce6b6700e1159edce0;p=thirdparty%2FPython%2Fcpython.git Fix a broken r.append(name, value) call, spotted by Tim. --- diff --git a/Lib/cgi.py b/Lib/cgi.py index efa492a0a1d6..d69da04fabea 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