mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 06:15:36 -04:00
Fix comparison to check values (#5815)
This commit is contained in:
parent
8fd3f6c64c
commit
f5ad08047b
1 changed files with 1 additions and 1 deletions
|
|
@ -914,7 +914,7 @@ class NginxConfigurator(common.Installer):
|
|||
raise errors.PluginError("Nginx build doesn't support SNI")
|
||||
|
||||
product_name, product_version = version_matches[0]
|
||||
if product_name is not 'nginx':
|
||||
if product_name != 'nginx':
|
||||
logger.warning("NGINX derivative %s is not officially supported by"
|
||||
" certbot", product_name)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue