From 295fc5e33a68c945d2f62e84ed8e6aaecfe93102 Mon Sep 17 00:00:00 2001 From: alexzorin Date: Sat, 4 Jun 2022 11:37:05 +1000 Subject: [PATCH] cli: fix help text for --no-autorenew (#9312) --- certbot/certbot/_internal/cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)