1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00

fix documentation

This commit is contained in:
James Kasten
2015-03-31 18:43:20 -07:00
parent 2bd451a964
commit c0dc49b192
2 changed files with 3 additions and 3 deletions

View File

@@ -17,11 +17,11 @@ class AuthHandler(object): # pylint: disable=too-many-instance-attributes
"""ACME Authorization Handler for a client.
:ivar dv_auth: Authenticator capable of solving
:const:`~letsencrypt.acme.challenges.DVChallenge`(s)
:class:`~letsencrypt.acme.challenges.DVChallenge` types
:type dv_auth: :class:`letsencrypt.client.interfaces.IAuthenticator`
:ivar cont_auth: Authenticator capable of solving
:const:`~letsencrypt.acme.challenges.ContinuityChallenge`(s)
:class:`~letsencrypt.acme.challenges.ContinuityChallenge` types
:type cont_auth: :class:`letsencrypt.client.interfaces.IAuthenticator`
:ivar network: Network object for sending and receiving authorization

View File

@@ -11,7 +11,7 @@ from letsencrypt.client import recovery_token
class ContinuityAuthenticator(object):
"""IAuthenticator for
:const:`~letsencrypt.acme.challenges.ContinuityChallenge`s.
:const:`~letsencrypt.acme.challenges.ContinuityChallenge` class challenges.
:ivar rec_token: Performs "recoveryToken" challenges
:type rec_token: :class:`letsencrypt.client.recovery_token.RecoveryToken`