From f7718d14aa0be4145183365c48a8d0a4dd52140a Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Fri, 22 May 2015 14:42:19 -0700 Subject: [PATCH] API documentation on obtain_and_enroll_cert --- letsencrypt/client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/letsencrypt/client.py b/letsencrypt/client.py index ce93f9fe9..58bdb6fda 100644 --- a/letsencrypt/client.py +++ b/letsencrypt/client.py @@ -171,6 +171,10 @@ class Client(object): :param plugins: A PluginsFactory object. :param str csr: A preexisting CSR to use with this request. + + :returns: A new :class:`letsencrypt.storage.RenewableCert` instance + referred to the enrolled cert lineage, or False if the cert could + not be obtained. """ # TODO: fully identify object types in docstring. cert_pem, privkey, chain_pem = self._obtain_certificate(domains, csr)