Fix a broken r.append(name, value) call, spotted by Tim.

This commit is contained in:
Guido van Rossum 2000-02-25 11:44:03 +00:00
parent c00a938be8
commit 3af7b050a3
1 changed files with 1 additions and 1 deletions

View File

@ -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