From: Lewis Cawte Date: Tue, 19 May 2020 12:24:24 +0000 (+0100) Subject: Switch import calls to certbot X-Git-Url: https://git.sesse.net/?p=letsencrypt-varnish-plugin;a=commitdiff_plain;h=9ad853413f0ef710dfecca07f1068dc03bbb22e1 Switch import calls to certbot --- diff --git a/README b/README index c2fb085..08d4e26 100644 --- a/README +++ b/README @@ -19,7 +19,7 @@ To use: 3. Install the module: - pip3 install -e path/to/this/certbot-hitch + pip3 install -e path/to/this/certbot-varnish 4. Ask for a certificate: diff --git a/varnish.py b/varnish.py index 1f6a05c..650bcbb 100644 --- a/varnish.py +++ b/varnish.py @@ -10,9 +10,9 @@ from zope.interface import implementer, provider from acme import challenges -from letsencrypt import errors -from letsencrypt import interfaces -from letsencrypt.plugins import common +from certbot import errors +from certbot import interfaces +from certbot.plugins import common logger = logging.getLogger(__name__)