From e3cd6fc70986c16507f5b2fe63c624ec76285d0d Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Fri, 26 Jun 2015 23:03:27 +0000 Subject: [PATCH] Fix review comments. --- letsencrypt/cli.py | 1 - letsencrypt/plugins/manual.py | 7 +++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index f0242854b..eb13f2f73 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -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") diff --git a/letsencrypt/plugins/manual.py b/letsencrypt/plugins/manual.py index 23dff649e..b16665581 100644 --- a/letsencrypt/plugins/manual.py +++ b/letsencrypt/plugins/manual.py @@ -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"