From f59eb8e6309ad0131ccc61a5e25964d23da36dd7 Mon Sep 17 00:00:00 2001 From: Noah Swartz Date: Wed, 24 May 2017 13:06:12 -0700 Subject: [PATCH] fix linting issues --- certbot/cli.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/certbot/cli.py b/certbot/cli.py index deb1bb24d..f3f8fae25 100644 --- a/certbot/cli.py +++ b/certbot/cli.py @@ -1224,15 +1224,20 @@ def _plugins_parsing(helpful, plugins): helpful.add(["plugins", "certonly"], "--webroot", action="store_true", help='Obtain certificates by placing files in a webroot directory.') helpful.add(["plugins", "certonly"], "--dns-cloudflare", action="store_true", - help='Obtain certificates using a DNS TXT record (if you are using Cloudflare for DNS).') + help=('Obtain certificates using a DNS TXT record (if you are ' + 'using Cloudflare for DNS).')) helpful.add(["plugins", "certonly"], "--dns-cloudxns", action="store_true", - help='Obtain certificates using a DNS TXT record (if you are using CloudXNS for DNS).') + help=('Obtain certificates using a DNS TXT record (if you are ' + 'using CloudXNS for DNS).')) helpful.add(["plugins", "certonly"], "--dns-digitalocean", action="store_true", - help='Obtain certificates using a DNS TXT record (if you are using DigitalOcean for DNS).') + help=('Obtain certificates using a DNS TXT record (if you are ' + 'using DigitalOcean for DNS).')) helpful.add(["plugins", "certonly"], "--dns-dnsimple", action="store_true", - help='Obtain certificates using a DNS TXT record (if you are using DNSimple for DNS).') + help=('Obtain certificates using a DNS TXT record (if you are ' + 'using DNSimple for DNS).')) helpful.add(["plugins", "certonly"], "--dns-google", action="store_true", - help='Obtain certificates using a DNS TXT record (if you are using Google Cloud DNS).') + help=('Obtain certificates using a DNS TXT record (if you are ' + 'using Google Cloud DNS).')) # things should not be reorder past/pre this comment: # plugins_group should be displayed in --help before plugin