From df71ec33b33c68461a992ac4dee9812c5748cd42 Mon Sep 17 00:00:00 2001 From: Noah Swartz Date: Mon, 28 Aug 2017 13:45:42 -0500 Subject: [PATCH] switch from triple quotes to single quotes --- certbot-nginx/certbot_nginx/configurator.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/certbot-nginx/certbot_nginx/configurator.py b/certbot-nginx/certbot_nginx/configurator.py index d77c5c2bc..0579c8d52 100644 --- a/certbot-nginx/certbot_nginx/configurator.py +++ b/certbot-nginx/certbot_nginx/configurator.py @@ -236,11 +236,11 @@ class NginxConfigurator(common.Plugin): if not vhost: # No matches. Raise a misconfiguration error. raise errors.MisconfigurationError( - """Cannot find a VirtualHost matching domain %s. - In order for Certbot to correctly perform the challenge - please add a corresponding server_name directive to your - nginx configuration: - https://nginx.org/en/docs/http/server_names.html""" % (target_name)) + ("Cannot find a VirtualHost matching domain %s. " + "In order for Certbot to correctly perform the challenge " + "please add a corresponding server_name directive to your " + "nginx configuration: " + "https://nginx.org/en/docs/http/server_names.html") % (target_name)) else: # Note: if we are enhancing with ocsp, vhost should already be ssl. if not vhost.ssl: