From d1fcc422e0aa218d579028f0536c7214fe68d2ba Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sun, 4 Oct 2015 11:09:42 +0000 Subject: [PATCH] Use ACME(TLS)Server in plugins.standalone --- letsencrypt/plugins/standalone.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt/plugins/standalone.py b/letsencrypt/plugins/standalone.py index 4444ed2c1..5f2bc9292 100644 --- a/letsencrypt/plugins/standalone.py +++ b/letsencrypt/plugins/standalone.py @@ -44,9 +44,9 @@ class ServerManager(object): if tls: cls = functools.partial( - acme_standalone.HTTPSServer, certs=self.certs) + acme_standalone.ACMETLSServer, certs=self.certs) else: - cls = BaseHTTPServer.HTTPServer + cls = acme_standalone.ACMEServer try: server = cls(("", port), handler)