From 8a3eb4f2ba3587c5924c337a3d1e8fbde50efdea Mon Sep 17 00:00:00 2001 From: James Kasten Date: Mon, 19 Jan 2015 16:01:44 -0800 Subject: [PATCH] Update interface.py documentation... Correctly list namedtuple challenge types in challenge_util.py --- letsencrypt/client/interfaces.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/letsencrypt/client/interfaces.py b/letsencrypt/client/interfaces.py index b052d6ac7..9e35a754a 100644 --- a/letsencrypt/client/interfaces.py +++ b/letsencrypt/client/interfaces.py @@ -17,13 +17,16 @@ class IAuthenticator(zope.interface.Interface): :param str domain: Domain for which challenge preferences are sought. :returns: list of strings with the most preferred challenges first. + If a type is not specified, it means the Authenticator cannot + perform the challenge. :rtype: list """ def perform(chall_list): """Perform the given challenge. - :param list chall_list: List of challenge types defined in client.py + :param list chall_list: List of namedtuple types defined in + challenge_util.py. DvsniChall...ect.. :returns: List of responses If the challenge cant be completed...