diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-12-09 08:11:43 -0500 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-12-09 08:12:55 -0500 |
commit | 74643fb1a4e9d5fcf7235df63ef0632bb6db818a (patch) | |
tree | 01b034ec8281e56b641ce445fde743bc9e170f34 | |
parent | d13c5e30f00656d91dcd86bec5234da14037eb9b (diff) | |
download | b4-74643fb1a4e9d5fcf7235df63ef0632bb6db818a.tar.gz |
Add BugLink to non-person trailers
Looks like BugLink: is a trailer used by Intel.
Reported-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | b4/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index 3439f01..730cefc 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -1195,8 +1195,8 @@ class LoreMessage: @staticmethod def find_trailers(body): - headers = ('subject', 'date', 'from') - nonperson = ('fixes', 'subject', 'date', 'link') + headers = ('subject', 'date', 'from', 'to') + nonperson = ('fixes', 'subject', 'date', 'link', 'buglink') # Fix some more common copypasta trailer wrapping # Fixes: abcd0123 (foo bar # baz quux) |