From 0ba12c9f464870a7ad4d24b006c9c688aea74d0d Mon Sep 17 00:00:00 2001 From: yan Date: Fri, 17 Apr 2015 22:21:14 -0700 Subject: [PATCH] Fix typo: _get_vhosts -> get_vhosts --- letsencrypt/client/plugins/nginx/configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/client/plugins/nginx/configurator.py b/letsencrypt/client/plugins/nginx/configurator.py index 4b3239538..1e5e819f8 100644 --- a/letsencrypt/client/plugins/nginx/configurator.py +++ b/letsencrypt/client/plugins/nginx/configurator.py @@ -97,7 +97,7 @@ class NginxConfigurator(object): self.version = self._get_version() # Get all of the available vhosts - self.vhosts = self.parser._get_vhosts() + self.vhosts = self.parser.get_vhosts() temp_install(self.config.nginx_mod_ssl_conf)