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):
try:
challenge_handlers[domain].destroy_challenge(domain, account_thumbprint, tokens[domain])
except (KeyboardInterrupt, SystemError, SystemExit):
# Re-raise runtime/system exceptions
raise
except:
pass

View File

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