diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-03-08 03:57:47 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-03-08 03:57:47 +0000 |
commit | d6e6852bb3e33d0177c7d1bbe658b30bc1e0984b (patch) | |
tree | f3051f748659889da69aae503e6b7f8accce640a | |
parent | More author match. (diff) | |
download | packages-3-d6e6852bb3e33d0177c7d1bbe658b30bc1e0984b.tar.gz packages-3-d6e6852bb3e33d0177c7d1bbe658b30bc1e0984b.tar.bz2 packages-3-d6e6852bb3e33d0177c7d1bbe658b30bc1e0984b.zip |
Final fix to parser.
-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, |