diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-06-06 14:07:54 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-06-06 14:07:54 -0700 |
commit | 013bf35e6d5ea7d085b74fbd3aca3417abee6dc5 (patch) | |
tree | fb933b528d98d062d5e76215af9265f99f683580 | |
parent | 13e9e397e04a68c6425a05e4ffb66f96077b026a (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 8b54d553..33a9b6c3 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -228,7 +228,7 @@ class SSHClient (ClosingContextManager): gss_deleg_creds=True, gss_host=None, banner_timeout=None, - auth_timeout=None + auth_timeout=None, ): """ Connect to an SSH server and authenticate to it. The server's host key |