File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -495,13 +495,16 @@ class ProjectCommand(SubCommand):
495
495
cwd = clone ,
496
496
).decode ()
497
497
msgid_trailer = 'Message-Id:' .casefold ()
498
+ msgid_link_trailer = 'Link: https://patch.msgid.link/' .casefold ()
498
499
lore_link_trailer = 'Link: https://lore.kernel.org/r/' .casefold ()
499
500
msgids = []
500
501
for x in output .splitlines ():
501
502
words = x .split ()
502
503
header = x .casefold ()
503
504
if header .startswith (msgid_trailer ):
504
505
msgids .append (x [11 :].strip ())
506
+ elif header .startswith (msgid_link_trailer ):
507
+ msgids .append ('%s' % x [31 :].rstrip ())
505
508
elif header .startswith (lore_link_trailer ):
506
509
msgids .append ('%s' % x [32 :].rstrip ())
507
510
logging .debug ("message ids: \n %s" % "\n " .join ([" " + x for x in msgids ]))
You can’t perform that action at this time.
0 commit comments