Commit d8f77382 authored by 's avatar

Fix for bug #1293: two arg append in ZPublisher/cgi.py

parent fcf83c36
...@@ -600,7 +600,7 @@ def parse_qsl(qs, keep_blank_values=0, strict_parsing=0): ...@@ -600,7 +600,7 @@ def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
continue continue
name = urllib.unquote(string.replace(nv[0], '+', ' ')) name = urllib.unquote(string.replace(nv[0], '+', ' '))
value = urllib.unquote(string.replace(nv[1], '+', ' ')) value = urllib.unquote(string.replace(nv[1], '+', ' '))
r.append(name, value) r.append((name, value))
return r return r
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment