From 2cd4e9eda292a4857bdb91d49a2df9b169dc049a Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Fri, 23 Sep 2016 17:32:40 -0700 Subject: [PATCH] Fix find & replace SNAFU --- certbot/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/main.py b/certbot/main.py index 9805d3cf9..3557f65b3 100644 --- a/certbot/main.py +++ b/certbot/main.py @@ -187,7 +187,7 @@ def _handle_identical_cert_request(config, lineage): elif config.verb == "certonly": keep_opt = "Keep the existing certificate for now" choices = [keep_opt, - "Renew & replace the lineage (limit ~5 per 7 days)"] + "Renew & replace the cert (limit ~5 per 7 days)"] display = zope.component.getUtility(interfaces.IDisplay) response = display.menu(question, choices, "OK", "Cancel", default=0)