aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2016-11-21 20:18:48 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2016-11-21 20:18:48 -0800
commitcb828c0b80a0fab32256d9845c05f50cfce9ddf0 (patch)
tree7770b44a650751cf5f3a1bdff3ce02a430dac8ed
parentbug#423207: support devs with periods in nick. (diff)
downloadrbot-gentoo-cb828c0b80a0fab32256d9845c05f50cfce9ddf0.tar.gz
rbot-gentoo-cb828c0b80a0fab32256d9845c05f50cfce9ddf0.tar.bz2
rbot-gentoo-cb828c0b80a0fab32256d9845c05f50cfce9ddf0.zip
bug#423207: changelogs.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r--gentoo-scripts/changelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoo-scripts/changelog.py b/gentoo-scripts/changelog.py
index 066f736..6367899 100644
--- a/gentoo-scripts/changelog.py
+++ b/gentoo-scripts/changelog.py
@@ -30,7 +30,7 @@ def grab_changelog_stuff(catpkg):
try:
foo=""
os.chdir(portage.settings["PORTDIR"] + "/" + catpkg)
- r=re.compile("<[A-Za-z_0-9]+@gentoo.org>", re.I)
+ r=re.compile("<[-.A-Za-z_0-9]+@gentoo.org>", re.I)
s="\n".join(portage.grabfile("ChangeLog"))