From f748627d1824ef36ac69ab9210bb62fa3336f4da Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 29 Sep 2017 18:37:22 -0700 Subject: [PATCH] remove traceback --- certbot-nginx/certbot_nginx/configurator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/certbot-nginx/certbot_nginx/configurator.py b/certbot-nginx/certbot_nginx/configurator.py index 06078b351..8d6a39c77 100644 --- a/certbot-nginx/certbot_nginx/configurator.py +++ b/certbot-nginx/certbot_nginx/configurator.py @@ -261,7 +261,6 @@ class NginxConfigurator(common.Installer): self.new_vhost = self.parser.create_new_vhost_from_default(default_vhost) self.new_vhost.names = set() - import ipdb; ipdb.set_trace() self.new_vhost.names.add(domain) name_block = [['\n ', 'server_name', ' ', " ".join(self.new_vhost.names)]] self.parser.add_server_directives(self.new_vhost, name_block, replace=True)