From a926d42bd6f3f922928eb11ad5dbcab2f6f9f7af Mon Sep 17 00:00:00 2001 From: Zach Shepherd Date: Mon, 5 Jun 2017 19:06:35 -0700 Subject: [PATCH] Use certificate instead of cert in DNS plugin descriptions (#4784) --- .../certbot_dns_cloudflare/dns_cloudflare.py | 3 ++- certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py | 2 +- certbot-dns-dnsimple/certbot_dns_dnsimple/dns_dnsimple.py | 2 +- certbot-dns-google/certbot_dns_google/dns_google.py | 3 ++- certbot-dns-nsone/certbot_dns_nsone/dns_nsone.py | 2 +- certbot-route53/certbot_route53/authenticator.py | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py index 6979581ee..f1156642f 100644 --- a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py +++ b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py @@ -21,7 +21,8 @@ class Authenticator(dns_common.DNSAuthenticator): This Authenticator uses the Cloudflare API to fulfill a dns-01 challenge. """ - description = 'Obtain certs using a DNS TXT record (if you are using Cloudflare for DNS).' + description = ('Obtain certificates using a DNS TXT record (if you are using Cloudflare for ' + 'DNS).') ttl = 120 def __init__(self, *args, **kwargs): diff --git a/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py b/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py index 2e9d23a88..674194fee 100644 --- a/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py +++ b/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py @@ -22,7 +22,7 @@ class Authenticator(dns_common.DNSAuthenticator): This Authenticator uses the CloudXNS DNS API to fulfill a dns-01 challenge. """ - description = 'Obtain certs using a DNS TXT record (if you are using CloudXNS for DNS).' + description = 'Obtain certificates using a DNS TXT record (if you are using CloudXNS for DNS).' ttl = 60 def __init__(self, *args, **kwargs): diff --git a/certbot-dns-dnsimple/certbot_dns_dnsimple/dns_dnsimple.py b/certbot-dns-dnsimple/certbot_dns_dnsimple/dns_dnsimple.py index f489f889a..f3a98567e 100644 --- a/certbot-dns-dnsimple/certbot_dns_dnsimple/dns_dnsimple.py +++ b/certbot-dns-dnsimple/certbot_dns_dnsimple/dns_dnsimple.py @@ -22,7 +22,7 @@ class Authenticator(dns_common.DNSAuthenticator): This Authenticator uses the DNSimple v2 API to fulfill a dns-01 challenge. """ - description = 'Obtain certs using a DNS TXT record (if you are using DNSimple for DNS).' + description = 'Obtain certificates using a DNS TXT record (if you are using DNSimple for DNS).' ttl = 60 def __init__(self, *args, **kwargs): diff --git a/certbot-dns-google/certbot_dns_google/dns_google.py b/certbot-dns-google/certbot_dns_google/dns_google.py index 908c020e1..39811782e 100644 --- a/certbot-dns-google/certbot_dns_google/dns_google.py +++ b/certbot-dns-google/certbot_dns_google/dns_google.py @@ -25,7 +25,8 @@ class Authenticator(dns_common.DNSAuthenticator): This Authenticator uses the Google Cloud DNS API to fulfill a dns-01 challenge. """ - description = 'Obtain certs using a DNS TXT record (if you are using Google Cloud DNS for DNS).' + description = ('Obtain certificates using a DNS TXT record (if you are using Google Cloud DNS ' + 'for DNS).') ttl = 60 def __init__(self, *args, **kwargs): diff --git a/certbot-dns-nsone/certbot_dns_nsone/dns_nsone.py b/certbot-dns-nsone/certbot_dns_nsone/dns_nsone.py index be60ff39d..28db126c1 100644 --- a/certbot-dns-nsone/certbot_dns_nsone/dns_nsone.py +++ b/certbot-dns-nsone/certbot_dns_nsone/dns_nsone.py @@ -22,7 +22,7 @@ class Authenticator(dns_common.DNSAuthenticator): This Authenticator uses the NS1 API to fulfill a dns-01 challenge. """ - description = 'Obtain certs using a DNS TXT record (if you are using NS1 for DNS).' + description = 'Obtain certificates using a DNS TXT record (if you are using NS1 for DNS).' ttl = 60 def __init__(self, *args, **kwargs): diff --git a/certbot-route53/certbot_route53/authenticator.py b/certbot-route53/certbot_route53/authenticator.py index 96b4d1abb..b2a9821e9 100644 --- a/certbot-route53/certbot_route53/authenticator.py +++ b/certbot-route53/certbot_route53/authenticator.py @@ -28,7 +28,7 @@ class Authenticator(common.Plugin): This authenticator solves a DNS01 challenge by uploading the answer to AWS Route53. """ - description = "Obtain certs using a DNS TXT record (if you are using AWS Route53 for DNS)." + description = "Obtain certificates using a DNS TXT record (if you are using AWS Route53 for DNS)." def __init__(self, *args, **kwargs): super(Authenticator, self).__init__(*args, **kwargs)