From: Zac Medico Date: Tue, 16 May 2006 06:10:23 +0000 (-0000) Subject: Add + to the --changelog regex so that dvd+rw-tools works for bug #133288. X-Git-Tag: v2.1_rc2~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3638b820ae313b7bfb97dd3bd3619d95c0f51067;p=portage.git Add + to the --changelog regex so that dvd+rw-tools works for bug #133288. svn path=/main/trunk/; revision=3362 --- diff --git a/bin/emerge b/bin/emerge index faca3019c..d9e89c39f 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1829,7 +1829,7 @@ class depgraph: divs = [] release = None while 1: - match = re.search(r'^\*\ ?([-a-zA-Z0-9_.]*)(?:\ .*)?\n',changelog,re.M) + match = re.search(r'^\*\ ?([-a-zA-Z0-9_.+]*)(?:\ .*)?\n',changelog,re.M) if match is None: if release is not None: divs.append((release,changelog))