From 0d12ded6febb9912491b1daa44e8c07426107cc9 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Wed, 28 Oct 2015 18:55:52 -0700 Subject: [PATCH] Alias "everything" correctly --- letsencrypt/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index db3cd051a..641d0d341 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -622,7 +622,8 @@ class HelpfulArgumentParser(object): """ # Maps verbs/subcommands to the functions that implement them - VERBS = {"auth": obtaincert, "certonly": obtaincert, "config_changes": config_changes, + VERBS = {"auth": obtaincert, "certonly": obtaincert, + "config_changes": config_changes, "everything": run, "install": install, "plugins": plugins_cmd, "revoke": revoke, "rollback": rollback, "run": run}