X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=mimedecode.py;h=36cc340c5556f2c07a088d87a78f4f4388280b3f;hb=563d8bfe689ee8f0efab714d57550bb6ccaf323b;hp=cd972210a1dc46d35dd55a3e2a1bb1cd11811863;hpb=c1a5169774327b8f530ed41ff061748e8b10923b;p=mimedecode.git diff --git a/mimedecode.py b/mimedecode.py index cd97221..36cc340 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -105,7 +105,7 @@ def decode_header_param(msg, header, param): def _get_exceptions(list): - return [x[1:].lower() for x in list[1:] if x[0]=='-'] + return [x[1:].lower() for x in list[1:] if x[0] == '-'] def _decode_headers_params(msg, header, decode_all_params, param_list): if decode_all_params: @@ -564,7 +564,8 @@ def get_opts(): from getopt import getopt, GetoptError try: - options, arguments = getopt(sys.argv[1:], + options, arguments = getopt( + sys.argv[1:], 'hVcCDPH:f:d:p:r:R:b:B:e:I:i:t:O:o:', ['help', 'version', 'host=', 'save-headers=', 'save-body=', 'save-message=',