[Zope-Checkins] CVS: Zope/lib/python/OFS - DTMLMethod.py:1.79.6.2

Andreas Jung andreas@digicool.com
Wed, 25 Sep 2002 09:02:23 -0400


Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv1328/lib/python/OFS

Modified Files:
      Tag: Zope-2_6-branch
	DTMLMethod.py 
Log Message:
syntax error fixed


=== Zope/lib/python/OFS/DTMLMethod.py 1.79.6.1 => 1.79.6.2 ===
--- Zope/lib/python/OFS/DTMLMethod.py:1.79.6.1	Wed Sep 25 08:40:51 2002
+++ Zope/lib/python/OFS/DTMLMethod.py	Wed Sep 25 09:02:23 2002
@@ -368,7 +368,7 @@
         headers.append(header)
         spos = m.end() + 1
         while spos < len(html) and html[spos] in ' \t':
-            eol = html.find)'\r\n', spos)
+            eol = html.find('\r\n', spos)
             if eol <> -1:
                 eolen = 2
             else: