From 17d54a5f6ada2ad8b43f3e2d540ce8f199cdd24c Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Mon, 29 Aug 2016 11:59:07 -0700 Subject: [PATCH] make docstring more explicit --- certbot/auth_handler.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/certbot/auth_handler.py b/certbot/auth_handler.py index dcde3f9a7..e9b4d66c8 100644 --- a/certbot/auth_handler.py +++ b/certbot/auth_handler.py @@ -33,7 +33,9 @@ class AuthHandler(object): and values are :class:`acme.messages.AuthorizationResource` :ivar list achalls: DV challenges in the form of :class:`certbot.achallenges.AnnotatedChallenge` - :ivar list pref_challs: A list of user specified preferred challenges + :ivar list pref_challs: sorted user specified preferred challenges + in the form of subclasses of :class:`acme.challenges.Challenge` + with the most preferred challenge listed first """ def __init__(self, auth, acme, account, pref_challs):