Commit eae7d0ec authored by Guido van Rossum's avatar Guido van Rossum

Forgot to remove debug stmt.

parent 9c6cedaa
...@@ -596,7 +596,6 @@ class FAQServer: ...@@ -596,7 +596,6 @@ class FAQServer:
if i >= 0: if i >= 0:
key, value = word[:i], word[i+1:] key, value = word[:i], word[i+1:]
cookies[key] = value cookies[key] = value
print "\n<PRE>Cookies:", cookies, "</PRE>"
if not cookies.has_key('Python-FAQ-Wizard'): if not cookies.has_key('Python-FAQ-Wizard'):
return "", "", "" return "", "", ""
value = cookies['Python-FAQ-Wizard'] value = cookies['Python-FAQ-Wizard']
......
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