From 6ee934b667e124925029c0ef83de30d1302c5bc9 Mon Sep 17 00:00:00 2001 From: Zach Shepherd Date: Mon, 5 Jun 2017 11:44:22 -0700 Subject: [PATCH] route53: shorten description to one line (#4772) The new description is less informative than the current one, but its shorter length makes the interactive plugin selection prompt easier to read. --- certbot-route53/certbot_route53/authenticator.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/certbot-route53/certbot_route53/authenticator.py b/certbot-route53/certbot_route53/authenticator.py index d53fd102f..74bf9b283 100644 --- a/certbot-route53/certbot_route53/authenticator.py +++ b/certbot-route53/certbot_route53/authenticator.py @@ -27,11 +27,7 @@ class Authenticator(common.Plugin): This authenticator solves a DNS01 challenge by uploading the answer to AWS Route53. """ - - description = ("Authenticate domain names using the DNS challenge type, " - "by automatically updating TXT records using AWS Route53. Works only " - "if you use AWS Route53 to host DNS for your domains. " + - INSTRUCTIONS) + description = "Obtain certs using a DNS TXT record (if you are using AWS Route53 for DNS)." def __init__(self, *args, **kwargs): super(Authenticator, self).__init__(*args, **kwargs)