From 405bc99235754b661224a18753bdb8a8ec3ff60d Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Sat, 26 Sep 2015 18:19:56 -0700 Subject: [PATCH] --help is effectively a verb for CLI purposes --- letsencrypt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 81f8a8414..a5968ec9c 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -679,7 +679,7 @@ def create_parser(plugins, args): # For now unfortunately this constant just needs to match the code below; # there isn't an elegant way to autogenerate it in time. VERBS = ["run", "auth", "install", "revoke", "rollback", "config_changes", - "plugins"] + "plugins", "--help"] def _create_subparsers(helpful):