From c3434bac26592585d12feb781a87f3e2be846e42 Mon Sep 17 00:00:00 2001 From: Zach Shepherd Date: Fri, 19 May 2017 16:39:25 -0700 Subject: [PATCH] DNS plugins: fix whitespace issue in authenticator pydoc (#4699) --- certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py | 2 +- .../certbot_dns_digitalocean/dns_digitalocean.py | 2 +- certbot-dns-google/certbot_dns_google/dns_google.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py index 50040b916..6979581ee 100644 --- a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py +++ b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py @@ -16,7 +16,7 @@ ACCOUNT_URL = 'https://www.cloudflare.com/a/account/my-account' @zope.interface.implementer(interfaces.IAuthenticator) @zope.interface.provider(interfaces.IPluginFactory) class Authenticator(dns_common.DNSAuthenticator): - """DNS Authenticator for Cloudflare + """DNS Authenticator for Cloudflare This Authenticator uses the Cloudflare API to fulfill a dns-01 challenge. """ diff --git a/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean.py b/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean.py index 30e0f2525..4bf279279 100644 --- a/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean.py +++ b/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean.py @@ -14,7 +14,7 @@ logger = logging.getLogger(__name__) @zope.interface.implementer(interfaces.IAuthenticator) @zope.interface.provider(interfaces.IPluginFactory) class Authenticator(dns_common.DNSAuthenticator): - """DNS Authenticator for DigitalOcean + """DNS Authenticator for DigitalOcean This Authenticator uses the DigitalOcean API to fulfill a dns-01 challenge. """ diff --git a/certbot-dns-google/certbot_dns_google/dns_google.py b/certbot-dns-google/certbot_dns_google/dns_google.py index 3f7a8d9f2..908c020e1 100644 --- a/certbot-dns-google/certbot_dns_google/dns_google.py +++ b/certbot-dns-google/certbot_dns_google/dns_google.py @@ -20,7 +20,7 @@ PERMISSIONS_URL = 'https://cloud.google.com/dns/access-control#permissions_and_r @zope.interface.implementer(interfaces.IAuthenticator) @zope.interface.provider(interfaces.IPluginFactory) class Authenticator(dns_common.DNSAuthenticator): - """DNS Authenticator for Google Cloud DNS + """DNS Authenticator for Google Cloud DNS This Authenticator uses the Google Cloud DNS API to fulfill a dns-01 challenge. """