Skip to content

Commit

Permalink
Forward port fix for Collector #1954 from 2.8 branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Nov 22, 2005
1 parent 2f88a14 commit 978d2af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DT_String.py
Expand Up @@ -57,7 +57,7 @@ def errQuote(self, s): return s

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__))

Expand Down

0 comments on commit 978d2af

Please sign in to comment.