diff options
-rw-r--r-- | b4/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index 37d8293..37121be 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -1379,6 +1379,9 @@ class LoreSubject: self.reply = True subject = re.sub(r'^\w+:\s*\[', '[', subject) + # Fix [PATCHv3] to be properly [PATCH v3] + subject = re.sub(r'^\[\s*(patch)(v\d+).*', '[$1 $2$3', subject, flags=re.I) + # Find all [foo] in the title while subject.find('[') == 0: matches = re.search(r'^\[([^\]]*)\]', subject) |