diff options
-rw-r--r-- | web/lib/changelog_formatter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/changelog_formatter.py b/web/lib/changelog_formatter.py index 5af8a2b..76a6661 100644 --- a/web/lib/changelog_formatter.py +++ b/web/lib/changelog_formatter.py @@ -8,7 +8,7 @@ from web.lib.links import viewcvs_link, \ # We use short variable names! # pylint: disable-msg=C0103 -re_author = re.compile(r' 20[01]\d; ([^<]+)? *<([^@> ]+)@[^>]>') +re_author = re.compile(r' 20[01]\d; ([^<]+)? *<([^@> ]+)@[^>]') re_author2 = re.compile(r' <?([^<@ ]+)@') def extract_changelog_entry_author(line): """From the first line of a changelog entry, |