Commit f24d8382 authored by Tres Seaver's avatar Tres Seaver

Collector #1954: DocumentTemplate.DT_String: remove non-XHTML wart from error message.

parent e598abfb
......@@ -26,6 +26,9 @@ Zope Changes
Bugs Fixed
- Collector #1954: DocumentTemplate.DT_String: remove non-XHTML
wart from error message.
- Fixed unclear security declarations. Warn when an attempt is
made to have a security declaration on a nonexistent method.
......
......@@ -57,7 +57,7 @@ class String:
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__))
......
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