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.
This commit is contained in:
Zach Shepherd 2017-06-05 11:44:22 -07:00 committed by Brad Warren
parent d25069d89b
commit 6ee934b667

View file

@ -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)