diff options
Diffstat (limited to 'paramiko/transport.py')
-rw-r--r-- | paramiko/transport.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index e4bbfdb3..df698300 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -1130,9 +1130,10 @@ class Transport(threading.Thread, ClosingContextManager): Perform GSS-API Key Exchange and user authentication. :param bool gss_deleg_creds: Whether to delegate GSS-API client credentials. - :param gss_trust_dns: Indicates whether or not the DNS is trusted to - securely canonicalize the name of the host being - connected to (default ``True``). + :param gss_trust_dns: + Indicates whether or not the DNS is trusted to securely + canonicalize the name of the host being connected to (default + ``True``). :raises: `.SSHException` -- if the SSH2 negotiation fails, the host key supplied by the server is incorrect, or authentication fails. |