dkimsign.py: PEP-8 line lengths

This commit is contained in:
Scott Kitterman
2017-06-04 17:27:07 -04:00
parent b99e029974
commit 60a6fc356e
+11 -4
View File
@@ -31,12 +31,17 @@ import dkim
# Backward compatibility hack because argparse doesn't support optional
# positional arguments
arguments=['--'+arg if arg[:8] == 'identity' else arg for arg in sys.argv[1:]]
parser = argparse.ArgumentParser(description='Produce DKIM signature for email messages.')
parser = argparse.ArgumentParser(
description='Produce DKIM signature for email messages.')
parser.add_argument('selector', action="store")
parser.add_argument('domain', action="store")
parser.add_argument('privatekeyfile', action="store")
parser.add_argument('--hcanon', choices=['simple', 'relaxed'], default='relaxed', type=bytes, help='Header canonicalization algorithm: default=relaxed')
parser.add_argument('--bcanon', choices=['simple', 'relaxed'], default='simple', type=bytes, help='Body canonicalization algorithm: default=simple')
parser.add_argument('--hcanon', choices=['simple', 'relaxed'],
default='relaxed', type=bytes,
help='Header canonicalization algorithm: default=relaxed')
parser.add_argument('--bcanon', choices=['simple', 'relaxed'],
default='simple', type=bytes,
help='Body canonicalization algorithm: default=simple')
parser.add_argument('--identity', help='Optional value for i= tag.')
args=parser.parse_args(arguments)
@@ -47,7 +52,9 @@ if sys.version_info[0] >= 3:
message = sys.stdin.read()
try:
sig = dkim.sign(message, args.selector, args.domain, open(args.privatekeyfile, "rb").read(), identity = args.identity, canonicalize=(args.hcanon, args.bcanon))
sig = dkim.sign(message, args.selector, args.domain, open(
args.privatekeyfile, "rb").read(), identity = args.identity,
canonicalize=(args.hcanon, args.bcanon))
sys.stdout.write(sig)
sys.stdout.write(message)
except Exception as e: