From c1a5169774327b8f530ed41ff061748e8b10923b Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 15 Oct 2017 16:26:58 +0300 Subject: [PATCH] Cleanup: Fix flake8 E127 continuation line over-indented for visual indent --- mimedecode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimedecode.py b/mimedecode.py index 5459cbf..cd97221 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -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 -- 2.39.2