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