[Zope3-checkins] SVN: Zope3/trunk/src/ClientForm.py fix
too-many-things-going-on-while-coding bug in comment
Benji York
benji at zope.com
Tue Jul 18 11:37:12 EDT 2006
Log message for revision 69172:
fix too-many-things-going-on-while-coding bug in comment
Changed:
U Zope3/trunk/src/ClientForm.py
-=-
Modified: Zope3/trunk/src/ClientForm.py
===================================================================
--- Zope3/trunk/src/ClientForm.py 2006-07-18 14:05:47 UTC (rev 69171)
+++ Zope3/trunk/src/ClientForm.py 2006-07-18 15:37:12 UTC (rev 69172)
@@ -643,8 +643,9 @@
def handle_data(self, data):
# according to http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.1
- # linebreaks immediately after start tags or immediately before end
- # tags must be ignored, but real browsers only ignore a
+ # line break immediately after start tags or immediately before end
+ # tags must be ignored, but real browsers only ignore a line break
+ # after a start tag, so we'll do that.
if data[0:1] == '\n':
data = data[1:]
More information about the Zope3-Checkins
mailing list