From f7b8e1f99e2b5b5a05b7a37105b4d109bd150410 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Tue, 15 Jan 2019 12:03:49 -0800 Subject: [PATCH] Modify delete after revoke question to clarify that the flag deletes the entire lineage --- certbot/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/certbot/main.py b/certbot/main.py index ac639bc80..a0c0ab64d 100644 --- a/certbot/main.py +++ b/certbot/main.py @@ -548,7 +548,8 @@ def _delete_if_appropriate(config): # pylint: disable=too-many-locals,too-many-b attempt_deletion = config.delete_after_revoke if attempt_deletion is None: - msg = ("Would you like to delete the cert(s) you just revoked?") + msg = ("Would you like to delete the cert(s) you just revoked, along with all earlier and " + "later versions of the cert?") attempt_deletion = display.yesno(msg, yes_label="Yes (recommended)", no_label="No", force_interactive=True, default=True)