From f5613ee07499530a1e9c3acd001ca9d4f41bd699 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Mon, 1 Jun 2015 21:08:42 +0000 Subject: [PATCH] Add help for the --verbose flag. --- letsencrypt/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 59e99648d..419064aab 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -242,7 +242,9 @@ def create_parser(plugins): add("--version", action="version", version="%(prog)s {0}".format( letsencrypt.__version__)) add("-v", "--verbose", dest="verbose_count", action="count", - default=flag_default("verbose_count")) + default=flag_default("verbose_count"), help="This flag can be used " + "multiple times to incrementally increase the verbosity of output, " + "e.g. -vvv.") add("--no-confirm", dest="no_confirm", action="store_true", help="Turn off confirmation screens, currently used for --revoke") add("-e", "--agree-tos", dest="tos", action="store_true",