[Zope-Checkins] SVN: Zope/trunk/lib/python/DocumentTemplate/DT_String.py Forward port fix for Collector #1954 from 2.8 branch.

Tres Seaver tseaver at palladion.com
Tue Nov 22 10:14:41 EST 2005


Log message for revision 40317:
  Forward port fix for Collector #1954 from 2.8 branch.

Changed:
  U   Zope/trunk/lib/python/DocumentTemplate/DT_String.py

-=-
Modified: Zope/trunk/lib/python/DocumentTemplate/DT_String.py
===================================================================
--- Zope/trunk/lib/python/DocumentTemplate/DT_String.py	2005-11-22 15:03:40 UTC (rev 40316)
+++ Zope/trunk/lib/python/DocumentTemplate/DT_String.py	2005-11-22 15:14:40 UTC (rev 40317)
@@ -57,7 +57,7 @@
 
     parse_error__roles__=()
     def parse_error(self, mess, tag, text, start):
-        raise ParseError, "%s, for tag %s, on line %s of %s<p>" % (
+        raise ParseError, "%s, for tag %s, on line %s of %s" % (
             mess, self.errQuote(tag), len(text[:start].split('\n')),
             self.errQuote(self.__name__))
 



More information about the Zope-Checkins mailing list