summaryrefslogtreecommitdiffstats
path: root/scripts/patchtest-send-results
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/patchtest-send-results')
-rwxr-xr-xscripts/patchtest-send-results4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/patchtest-send-results b/scripts/patchtest-send-results
index 9fd24c9b95..f65d862074 100755
--- a/scripts/patchtest-send-results
+++ b/scripts/patchtest-send-results
@@ -64,7 +64,9 @@ subject_line = f"Patchtest results for {mbox_subject}"
64reply_address = mbox[0]['from'] 64reply_address = mbox[0]['from']
65 65
66# extract the message ID and use that as the in-reply-to address 66# extract the message ID and use that as the in-reply-to address
67in_reply_to = re.findall("<(.*)>", mbox[0]['Message-ID'])[0] 67# TODO: This will need to change again when patchtest can handle a whole
68# series at once
69in_reply_to = mbox[0]['Message-ID']
68 70
69# the address the results email is sent from 71# the address the results email is sent from
70from_address = "patchtest@automation.yoctoproject.org" 72from_address = "patchtest@automation.yoctoproject.org"