]> git.phdru.name Git - mimedecode.git/commitdiff
Cleanup: Fix flake8 E127 continuation line over-indented for visual indent
authorOleg Broytman <phd@phdru.name>
Sun, 15 Oct 2017 13:26:58 +0000 (16:26 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 15 Oct 2017 13:26:58 +0000 (16:26 +0300)
mimedecode.py

index 5459cbff73ab05dcc32ba5f7645ae5951a525cb8..cd972210a1dc46d35dd55a3e2a1bb1cd11811863 100755 (executable)
@@ -385,7 +385,7 @@ def decode_part(msg):
             outstring = totext(msg, outstring)
             break
         elif content_type in g.binary_mask or \
-             content_type in g.decoded_binary_mask:
+                content_type in g.decoded_binary_mask:
             output_headers(msg)
             output(outstring)
             break