1
0
mirror of https://github.com/moepman/acertmgr.git synced 2024-06-16 04:52:35 +02:00

PEP-8 cleanup

This commit is contained in:
Kishi85 2019-02-27 11:36:00 +01:00
parent b99014c7c3
commit ad70e1abd4
2 changed files with 4 additions and 1 deletions

View File

@ -175,6 +175,9 @@ class ACMEAuthority(AbstractACMEAuthority):
for domain in reversed(domains): for domain in reversed(domains):
try: try:
challenge_handlers[domain].destroy_challenge(domain, account_thumbprint, tokens[domain]) challenge_handlers[domain].destroy_challenge(domain, account_thumbprint, tokens[domain])
except (KeyboardInterrupt, SystemError, SystemExit):
# Re-raise runtime/system exceptions
raise
except: except:
pass pass

View File

@ -67,5 +67,5 @@ setup(
], ],
}, },
data_files=[('readme', ['README.md']), data_files=[('readme', ['README.md']),
('config', ['docs/acertmgr.conf','docs/domain.conf'])] ('config', ['docs/acertmgr.conf', 'docs/domain.conf'])]
) )