Fix review comments.

This commit is contained in:
Jakub Warmuz 2015-06-26 23:03:27 +00:00
parent 79252e7940
commit e3cd6fc709
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 3 additions and 5 deletions

View file

@ -454,7 +454,6 @@ def create_parser(plugins, args):
# subparser.add_argument("domains", nargs="*", metavar="domain")
helpful.add(None, "-d", "--domains", metavar="DOMAIN", action="append")
helpful.add_group(
"automation",
description="Arguments for automating execution & other tweaks")

View file

@ -11,20 +11,19 @@ from acme import challenges
from acme import jose
from letsencrypt import interfaces
from letsencrypt.plugins import null
from letsencrypt.plugins import common
logger = logging.getLogger(__name__)
class ManualAuthenticator(null.Installer):
class ManualAuthenticator(common.Plugin):
"""Manual Authenticator.
.. todo:: Support for `~.challenges.DVSNI`.
"""
zope.interface.implements(
interfaces.IAuthenticator, interfaces.IInstaller)
zope.interface.implements(interfaces.IAuthenticator)
zope.interface.classProvides(interfaces.IPluginFactory)
description = "Manual Authenticator"