Fix recent commits docs bugs

This commit is contained in:
Jakub Warmuz 2014-11-30 13:23:20 +01:00
parent 72218f3dd3
commit b354c9caf6

View file

@ -37,11 +37,16 @@ class Client(object):
def __init__(self, ca_server, cert_signing_request=CSR(None, None, None),
private_key=Key(None, None), use_curses=True):
"""
"""Initialize client.
:param str ca_server: Certificate authority server
:param str cert_signing_request: Contents of the CSR
:param str private_key: Contents of the private key
:param cert_signing_request: Certificate Signing Request
:type cert_signing_request: :class:`CSR`
:param private_key: Private key
:type private_key: :class:`Key`
:param bool use_curses: Use curses UI
"""