diff options
-rw-r--r-- | web/lib/changelog_formatter.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/web/lib/changelog_formatter.py b/web/lib/changelog_formatter.py index 536b0b0..cc67003 100644 --- a/web/lib/changelog_formatter.py +++ b/web/lib/changelog_formatter.py @@ -1,6 +1,6 @@ import re import urlparse -from cherrypy.lib.tidy import html_break +import cgi from web.lib.links import viewcvs_link, \ bugzilla_bug_link, \ @@ -9,6 +9,10 @@ from web.lib.links import viewcvs_link, \ # We use short variable names! # pylint: disable-msg=C0103 +def html_break(value): + """New cherrypy doesn't have tidy.html_break anymore""" + return cgi.escape(value).replace('\n', '<br />') + re_author = re.compile(r' 20[01]\d; ([^<]+)? *<([^@> ]+)@[^>]') re_author2 = re.compile(r' <?([^<@ ]+)@') def extract_changelog_entry_author(line): |