Add help for the --verbose flag.

This commit is contained in:
Jakub Warmuz 2015-06-01 21:08:42 +00:00
parent 2027110512
commit f5613ee074
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA

View file

@ -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",