Commit 48fbf431 authored by Tres Seaver's avatar Tres Seaver

Launchpad #234209: De-tabify ZPublisher/HTTPRequest.py.

parent 92fb150e
......@@ -4,6 +4,12 @@ Zope Changes
Change information for previous versions of Zope can be found in the
file HISTORY.txt.
After Zope 2.9.9
Bugs fixed
- Launchpad #234209: De-tabify ZPublisher/HTTPRequest.py
Zope 2.9.9 (2008/05/10)
Bugs fixed
......
......@@ -1492,11 +1492,11 @@ def parse_cookie(text,
else:
# Broken Cookie without = nor value.
broken_p = paramlessre.match(text)
if broken_p:
l = len(broken_p.group(1))
name = broken_p.group(2)
value = ''
broken_p = paramlessre.match(text)
if broken_p:
l = len(broken_p.group(1))
name = broken_p.group(2)
value = ''
else:
return result
......
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