[Zope-Checkins] SVN: Zope/branches/2.9/ Launchpad #234209:
De-tabify ZPublisher/HTTPRequest.py.
Tres Seaver
tseaver at palladion.com
Fri May 23 16:27:26 EDT 2008
Log message for revision 86919:
Launchpad #234209: De-tabify ZPublisher/HTTPRequest.py.
Changed:
U Zope/branches/2.9/doc/CHANGES.txt
U Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py
-=-
Modified: Zope/branches/2.9/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.9/doc/CHANGES.txt 2008-05-23 20:25:26 UTC (rev 86918)
+++ Zope/branches/2.9/doc/CHANGES.txt 2008-05-23 20:27:25 UTC (rev 86919)
@@ -4,6 +4,12 @@
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
Modified: Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py
===================================================================
--- Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py 2008-05-23 20:25:26 UTC (rev 86918)
+++ Zope/branches/2.9/lib/python/ZPublisher/HTTPRequest.py 2008-05-23 20:27:25 UTC (rev 86919)
@@ -1492,11 +1492,11 @@
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
More information about the Zope-Checkins
mailing list