diff options
author | Andreas Runfalk <andreas@runfalk.se> | 2017-08-21 13:35:02 +0200 |
---|---|---|
committer | Andreas Runfalk <andreas@runfalk.se> | 2017-08-21 13:35:02 +0200 |
commit | 61fe4befdafe37f744c903bc921a36ed3c4d67c5 (patch) | |
tree | ed266fd9c20c664a09f9abad400e60ebdc6b2bc9 | |
parent | e5593e9fdd0fd19624debca9d5bf3529957ec37b (diff) | |
download | certbot-loopia-61fe4befdafe37f744c903bc921a36ed3c4d67c5.zip certbot-loopia-61fe4befdafe37f744c903bc921a36ed3c4d67c5.tar.gz certbot-loopia-61fe4befdafe37f744c903bc921a36ed3c4d67c5.tar.bz2 |
Minor tweaks
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | certbot_loopia.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -19,7 +19,7 @@ To use the authenticator you need to provide some required options: INI file with ``user`` and ``password`` for your Loopia API user. ``user`` normally has the format ``user@loopiaapi``. -The credential file must have the folling format: +The credentials file must have the folling format: .. code-block:: diff --git a/certbot_loopia.py b/certbot_loopia.py index 02fa0ed..1569c51 100644 --- a/certbot_loopia.py +++ b/certbot_loopia.py @@ -3,7 +3,7 @@ import itertools import re import zope.interface -from certbot.plugins.dns_common import base_domain_name_guesses, DNSAuthenticator +from certbot.plugins.dns_common import DNSAuthenticator from certbot.interfaces import IAuthenticator, IPluginFactory from datetime import datetime, timedelta from loopialib import DnsRecord, Loopia, split_domain @@ -19,7 +19,7 @@ class LoopiaAuthenticator(DNSAuthenticator): """ Loopia DNS ACME authenticator. - Super! + This Authenticator uses the Loopia API to fulfill a dns-01 challenge. """ #: Short description of plugin |