From: Ralf Jung Date: Tue, 29 Dec 2015 13:00:56 +0000 (+0100) Subject: hooks are not mandatory X-Git-Url: https://git.ralfj.de/lets-encrypt-tiny.git/commitdiff_plain/447af53ef3d1c8f62d09a692236d881bcf7fc312 hooks are not mandatory --- diff --git a/letsencrypt-tiny b/letsencrypt-tiny index 658eb07..c6b4cc0 100755 --- a/letsencrypt-tiny +++ b/letsencrypt-tiny @@ -35,7 +35,7 @@ def make_backup(fname): def trigger_hook(hook): global config - exe = config['hooks'][hook] + exe = config['hooks'].get(hook) if exe is not None: subprocess.check_call([exe])