aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-07-06 18:07:59 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-07-06 18:07:59 -0400
commit46c29287b1284e3d5de32107dbfca752fd40c8ed (patch)
tree50d36278c316fe1399d9e1f18c55e3ed3d2cbc79
parent857797f0bc1809e8af8ae5a1a31e3551742ee31b (diff)
downloadb4-46c29287b1284e3d5de32107dbfca752fd40c8ed.tar.gz
Deal with [PATCHvX] subjects
Normally, we'd expect to always have a space between PATCH and other prefixes, but be forgiving if it's not present. Reported-by: Mark Brown <broonie@kernel.org> Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--b4/__init__.py3
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)