Merge pull request #7729 from certbot/fix-nginx-typo

Fix a typo in Nginx
This commit is contained in:
m0namon 2020-02-04 17:00:13 -08:00 committed by GitHub
commit 1a2189f4df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]