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