mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
Use zope decorators
This makes it compatible with python3.
This commit is contained in:
parent
4538766c48
commit
17c4c7f68e
1 changed files with 2 additions and 2 deletions
|
|
@ -16,9 +16,9 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
TTL = 30
|
||||
|
||||
@zope.interface.implementer(interfaces.IAuthenticator)
|
||||
@zope.interface.provider(interfaces.IPluginFactory)
|
||||
class Authenticator(common.Plugin):
|
||||
zope.interface.implements(interfaces.IAuthenticator)
|
||||
zope.interface.classProvides(interfaces.IPluginFactory)
|
||||
|
||||
description = "Route53 Authenticator"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue