mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
added back docstring to manual
This commit is contained in:
parent
358c7b11f4
commit
09f9b6a348
1 changed files with 6 additions and 1 deletions
|
|
@ -26,13 +26,18 @@ logger = logging.getLogger(__name__)
|
|||
class Authenticator(common.Plugin):
|
||||
"""Manual Authenticator.
|
||||
|
||||
This plugin requires user's manual intervention in setting up a HTTP
|
||||
server for solving SimpleHTTP challenges and thus does not need to be
|
||||
run as a privilidged process. Alternatively shows instructions on how
|
||||
to use Python's built-in HTTP server.
|
||||
|
||||
.. todo:: Support for `~.challenges.DVSNI`.
|
||||
"""
|
||||
zope.interface.implements(interfaces.IAuthenticator)
|
||||
zope.interface.classProvides(interfaces.IPluginFactory)
|
||||
hidden = True
|
||||
|
||||
description = "Manually Configure And Run A Simple Python Webserver"
|
||||
description = "Manually configure and run a simple Python webserver"
|
||||
|
||||
MESSAGE_TEMPLATE = """\
|
||||
Make sure your web server displays the following content at
|
||||
|
|
|
|||
Loading…
Reference in a new issue