From 6f754f63b187f0a3b9bbc5271675a7a32f42c7e0 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Tue, 15 Jan 2019 12:05:00 -0800 Subject: [PATCH] Update --help for --delete-after-revoke to clarify that the flag deletes the entire lineage --- certbot/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/certbot/cli.py b/certbot/cli.py index ff1827cb1..31f55711f 100644 --- a/certbot/cli.py +++ b/certbot/cli.py @@ -1311,7 +1311,8 @@ def _create_subparsers(helpful): helpful.add("revoke", "--delete-after-revoke", action="store_true", default=flag_default("delete_after_revoke"), - help="Delete certificates after revoking them.") + help="Delete certificates after revoking them, along with all previous and later " + "versions of those certificates.") helpful.add("revoke", "--no-delete-after-revoke", action="store_false", dest="delete_after_revoke",