Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorm0namon <51840727+m0namon@users.noreply.github.com>2020-02-05 04:00:13 +0300
committerGitHub <noreply@github.com>2020-02-05 04:00:13 +0300
commit1a2189f4df591cfb89e181a383dae900e9bdd565 (patch)
treeffbdf33cdf783891d7a859465b685a3ea0a525cf
parent174fa0e05ca3f8e6c8549abc7f3bc4bc8c40123a (diff)
parent35fa4c0457827f08134f7ea96e8ebf17cc120c3d (diff)
Merge pull request #7729 from certbot/fix-nginx-typo
Fix a typo in Nginx
-rw-r--r--certbot-nginx/certbot_nginx/_internal/configurator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-nginx/certbot_nginx/_internal/configurator.py b/certbot-nginx/certbot_nginx/_internal/configurator.py
index 70d9d87f8..fdead036a 100644
--- a/certbot-nginx/certbot_nginx/_internal/configurator.py
+++ b/certbot-nginx/certbot_nginx/_internal/configurator.py
@@ -1008,7 +1008,7 @@ class NginxConfigurator(common.Installer):
matches = re.findall(r"built with OpenSSL ([^ ]+) ", text)
if not matches:
logger.warning("NGINX configured with OpenSSL alternatives is not officially"
- "supported by Certbot.")
+ " supported by Certbot.")
return ""
return matches[0]