diff options
Diffstat (limited to 'scripts/patchtest-send-results')
-rwxr-xr-x | scripts/patchtest-send-results | 4 |
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}" | |||
64 | reply_address = mbox[0]['from'] | 64 | reply_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 |
67 | in_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 | ||
69 | in_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 |
70 | from_address = "patchtest@automation.yoctoproject.org" | 72 | from_address = "patchtest@automation.yoctoproject.org" |