Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexzorin <alex@zorin.id.au>2022-06-04 04:37:05 +0300
committerGitHub <noreply@github.com>2022-06-04 04:37:05 +0300
commit295fc5e33a68c945d2f62e84ed8e6aaecfe93102 (patch)
tree022080c4a7d3f5b8985bad4af703edf8b2c929db
parentd13131e30337cf0be5ba2196132437a67632a429 (diff)
cli: fix help text for --no-autorenew (#9312)
-rw-r--r--certbot/certbot/_internal/cli/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot/certbot/_internal/cli/__init__.py b/certbot/certbot/_internal/cli/__init__.py
index 80d4349dc..d3f4a2cbe 100644
--- a/certbot/certbot/_internal/cli/__init__.py
+++ b/certbot/certbot/_internal/cli/__init__.py
@@ -438,7 +438,7 @@ def prepare_and_parse_args(plugins: plugins_disco.PluginsRegistry, args: List[st
helpful.add(
"renew", "--no-autorenew", action="store_false",
default=flag_default("autorenew"), dest="autorenew",
- help="Disable auto renewal of certificates.")
+ help="Disable auto renewal of certificates. (default: False)")
# Deprecated arguments
helpful.add_deprecated_argument("--os-packages-only", 0)