From: Oleg Broytman Date: Wed, 5 Feb 2014 15:48:20 +0000 (+0400) Subject: Minor refactoring: move 'boundary' inside 'if' X-Git-Tag: v2.3.4~5 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;ds=sidebyside;h=de1ef9c0262b670f345870a50a794c2dcd864e69;p=mimedecode.git Minor refactoring: move 'boundary' inside 'if' --- 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)