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