remove zope to fix compatibility with Certbot 2.x
This commit is contained in:
parent
b4b3f24e1e
commit
c12f443c15
1 changed files with 0 additions and 5 deletions
|
@ -1,20 +1,15 @@
|
||||||
"""DNS Authenticator for IONOS."""
|
"""DNS Authenticator for IONOS."""
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import time
|
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
import zope.interface
|
|
||||||
|
|
||||||
from certbot import errors
|
from certbot import errors
|
||||||
from certbot import interfaces
|
|
||||||
from certbot.plugins import dns_common
|
from certbot.plugins import dns_common
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
@zope.interface.implementer(interfaces.IAuthenticator)
|
|
||||||
@zope.interface.provider(interfaces.IPluginFactory)
|
|
||||||
class Authenticator(dns_common.DNSAuthenticator):
|
class Authenticator(dns_common.DNSAuthenticator):
|
||||||
"""DNS Authenticator for IONOS
|
"""DNS Authenticator for IONOS
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue