diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-22 09:48:30 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-22 09:48:30 -0700 |
commit | be220e3ee52ab842c84461011c36ffdea2cb01fb (patch) | |
tree | 3bb296e48508dede57de3403b2a941fb0cf6baa2 | |
parent | 6e3936dad29d19154e24c233688e39179ea7e866 (diff) |
80-col tweaks
-rw-r--r-- | paramiko/transport.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 2ffc8ca8..bf30c784 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -960,10 +960,14 @@ class Transport (threading.Thread, ClosingContextManager): :param .PKey pkey: a private key to use for authentication, if you want to use private key authentication; otherwise ``None``. - :param str gss_host: The targets name in the kerberos database. default: hostname - :param bool gss_auth: ``True`` if you want to use GSS-API authentication - :param bool gss_kex: Perform GSS-API Key Exchange and user authentication - :param bool gss_deleg_creds: Delegate GSS-API client credentials or not + :param str gss_host: + The target's name in the kerberos database. Default: hostname + :param bool gss_auth: + ``True`` if you want to use GSS-API authentication. + :param bool gss_kex: + Perform GSS-API Key Exchange and user authentication. + :param bool gss_deleg_creds: + Whether to delegate GSS-API client credentials. :raises SSHException: if the SSH2 negotiation fails, the host key supplied by the server is incorrect, or authentication fails. |