From 98c74ddd14cbcd227934d92f0e508f46df12b94c Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Mon, 19 Oct 2015 12:26:59 -0700 Subject: [PATCH] Removed no_simple_http_tls --- letsencrypt/plugins/webroot.py | 3 +-- letsencrypt/tests/renewer_test.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/letsencrypt/plugins/webroot.py b/letsencrypt/plugins/webroot.py index ed8991bc5..f11325f57 100644 --- a/letsencrypt/plugins/webroot.py +++ b/letsencrypt/plugins/webroot.py @@ -72,8 +72,7 @@ to serve all files under specified web root ({0}).""" return os.path.join(self.full_root, achall.chall.encode("token")) def _perform_single(self, achall): - response, validation = achall.gen_response_and_validation( - tls=(not self.config.no_simple_http_tls)) + response, validation = achall.gen_response_and_validation(tls=False) path = self._path_for_achall(achall) logger.debug("Attempting to save validation to %s", path) with open(path, "w") as validation_file: diff --git a/letsencrypt/tests/renewer_test.py b/letsencrypt/tests/renewer_test.py index 1e434b79e..3077be25d 100644 --- a/letsencrypt/tests/renewer_test.py +++ b/letsencrypt/tests/renewer_test.py @@ -48,7 +48,6 @@ class BaseRenewableCertTest(unittest.TestCase): config_dir=self.tempdir, work_dir=self.tempdir, logs_dir=self.tempdir, - no_simple_http_tls=False, ) )