From 9bb48778dcd45ceab022c5e15c45402b5bd5663b Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 16 Jan 2018 21:13:13 -0800 Subject: [PATCH] fix typo --- certbot-apache/certbot_apache/http_01.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/certbot_apache/http_01.py b/certbot-apache/certbot_apache/http_01.py index 0ee006cfb..fbb219d54 100644 --- a/certbot-apache/certbot_apache/http_01.py +++ b/certbot-apache/certbot_apache/http_01.py @@ -74,7 +74,7 @@ class ApacheHttp01(common.TLSSNI01): moded_vhosts = set() for chall in self.achalls: vh = self.configurator.find_best_http_vhost(chall.domain) - if vh and vh not in moded_vhosts + if vh and vh not in moded_vhosts: self._set_up_include_directive(vh) moded_vhosts.add(vh)