From: Trevor Gamblin Date: Thu, 15 Feb 2024 21:37:05 +0000 (-0500) Subject: patchtest-send-results: use Message-ID directly X-Git-Tag: uninative-4.4~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ce51580a23869a9c0f409446ff717d471fb60db;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git patchtest-send-results: use Message-ID directly There's no need to use regex for extracting the Message-ID field from the patch email and mangle it by removing the angle brackets in the process. Pull it directly from the mbox so that Patchtest's replies have even fewer differences when compared to other replies. Also add a TODO so that it's clear this needs adjustment when full series support is added. Signed-off-by: Trevor Gamblin Signed-off-by: Richard Purdie --- diff --git a/scripts/patchtest-send-results b/scripts/patchtest-send-results index 9fd24c9b959..f65d8620744 100755 --- a/scripts/patchtest-send-results +++ b/scripts/patchtest-send-results @@ -64,7 +64,9 @@ subject_line = f"Patchtest results for {mbox_subject}" reply_address = mbox[0]['from'] # extract the message ID and use that as the in-reply-to address -in_reply_to = re.findall("<(.*)>", mbox[0]['Message-ID'])[0] +# TODO: This will need to change again when patchtest can handle a whole +# series at once +in_reply_to = mbox[0]['Message-ID'] # the address the results email is sent from from_address = "patchtest@automation.yoctoproject.org"