From de1ef9c0262b670f345870a50a794c2dcd864e69 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 5 Feb 2014 19:48:20 +0400 Subject: [PATCH] Minor refactoring: move 'boundary' inside 'if' --- mimedecode.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mimedecode.py b/mimedecode.py index 692a0f0..164cebf 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -246,7 +246,6 @@ def decode_file(infile): "Decode the entire message" msg = email.message_from_file(infile) - boundary = msg.get_boundary() if msg.is_multipart(): decode_headers(msg) @@ -255,6 +254,8 @@ def decode_file(infile): if msg.preamble: # Preserve the first part, it is probably not a RFC822-message output(msg.preamble) # Usually it is just a few lines of text (MIME warning) + boundary = msg.get_boundary() + for subpart in msg.get_payload(): output("\n--%s\n" % boundary) decode_part(subpart) -- 2.39.2