summaryrefslogtreecommitdiff
path: root/patterns.py
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2009-07-24 13:56:21 -0600
committerJonathan Corbet <corbet@lwn.net>2009-07-24 13:56:21 -0600
commitd25572552b2ac5cf906555674ad9ed95c3acb41e (patch)
treebe01c2ab64978257a380a183ddb4e48fd8697d6b /patterns.py
parentc0d9831515530f29875a56df997657f62a505577 (diff)
Reduce the number of "funky email" gripes
Addresses of the form "user at host.wherever" can be trivially repaired, so let's do so. A couple of other minor tweaks are included here as well; nothing which changes behavior.
Diffstat (limited to 'patterns.py')
-rw-r--r--patterns.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/patterns.py b/patterns.py
index ca34586..f912d9a 100644
--- a/patterns.py
+++ b/patterns.py
@@ -21,7 +21,7 @@ Pcommit = re.compile (r'^commit ([0-9a-f ]+)$')
Pauthor = re.compile (r'^Author:' + Pemail + '$')
Psob = re.compile (r'Signed-off-by:' + Pemail)
Pmerge = re.compile (r'^Merge:.*$')
-Padd = re.compile (r'^\+[^\+].*$')
+Padd = re.compile (r'^\+[^+].*$')
Prem = re.compile (r'^-[^-].*$')
Pdate = re.compile (r'^(Commit)?Date:\s+(.*)$')
Pfilea = re.compile (r'^---\s+(.*)$')