]> git.phdru.name Git - mimedecode.git/commitdiff
Minor refactoring: move 'boundary' inside 'if'
authorOleg Broytman <phd@phdru.name>
Wed, 5 Feb 2014 15:48:20 +0000 (19:48 +0400)
committerOleg Broytman <phd@phdru.name>
Wed, 5 Feb 2014 15:48:20 +0000 (19:48 +0400)
mimedecode.py

index 692a0f0d700706799203af81c59a00b9e8df5ef6..164cebf7184a7bb1e38b07839d7b0705af4ece43 100755 (executable)
@@ -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)