diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-09-13 08:51:46 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-09-13 08:51:46 -0700 |
commit | 38605d4d4e4e1374c36f31a0d68ce37beba4cb8a (patch) | |
tree | 60595d5c499a0da78475065b270a0825aa1fc096 | |
parent | 2b3967e2f641bb265fd6a4570e8b5a7875159bc9 (diff) |
Trailing comma
-rw-r--r-- | paramiko/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/client.py b/paramiko/client.py index e1d64ff6..69d08a1b 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -228,7 +228,7 @@ class SSHClient (ClosingContextManager): gss_host=None, banner_timeout=None, auth_timeout=None, - gss_trust_dns=True + gss_trust_dns=True, ): """ Connect to an SSH server and authenticate to it. The server's host key |