diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-09-13 08:51:59 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-09-13 08:51:59 -0700 |
commit | 01cfbbe9f37ed214c4093e1a6a1a865290cc7cb4 (patch) | |
tree | 5580a1dd14fd352e1b68c94cafe5e5d80e991a4a | |
parent | de7804e8a06e4560f13ce214854fa2619a57e8d0 (diff) |
Formatting (old)
-rw-r--r-- | paramiko/transport.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 30df6a1a..e4bbfdb3 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -459,11 +459,13 @@ class Transport(threading.Thread, ClosingContextManager): """ Setter for C{gss_host} if GSS-API Key Exchange is performed. - :param str gss_host: The targets name in the kerberos database - Default: The name of the host to connect to - :param bool dns_lookup: Indicates whether or not ``gss_host`` should be - canonicalized (default ``True``). - :rtype: Void + :param str gss_host: + The target's name in the kerberos database. Default: The name of + the host to connect to. + :param bool dns_lookup: + Indicates whether or not ``gss_host`` should be canonicalized + (default ``True``). + :returns: ``None``. """ if dns_lookup: self.gss_host = socket.getfqdn(gss_host) |