From 5d0192732c795bdfa066e7d00e2eb9c0afa99d1a Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 10 Jul 2022 22:52:39 +0100 Subject: [PATCH] Prepend dashes --- content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.py b/content.py index 86cd82804..b1a0eb20d 100644 --- a/content.py +++ b/content.py @@ -1480,7 +1480,7 @@ def extract_text_fields_in_post(post_bytes, boundary: str, debug: bool, The boundary argument comes from the http header """ if boundary == 'LYNX': - boundary == '--LYNX' + boundary = '--LYNX' if not unit_test_data: msg_bytes = email.parser.BytesParser().parsebytes(post_bytes)