summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-09-13 09:51:35 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-09-13 09:51:35 -0700
commit140bd0cf4645217d285945f6adf29edd4faf63a5 (patch)
tree78359bfd9aaa56e460b0a141bdb4fabc9975fa85
parent37063ef39362837bb55afbfa19bb692361e96602 (diff)
flake8
-rw-r--r--paramiko/transport.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 312d2aea..a1c503f8 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -1188,7 +1188,9 @@ class Transport(threading.Thread, ClosingContextManager):
if (pkey is not None) or (password is not None) or gss_auth or gss_kex:
if gss_auth:
self._log(DEBUG, 'Attempting GSS-API auth... (gssapi-with-mic)') # noqa
- self.auth_gssapi_with_mic(username, self.gss_host, gss_deleg_creds)
+ self.auth_gssapi_with_mic(
+ username, self.gss_host, gss_deleg_creds,
+ )
elif gss_kex:
self._log(DEBUG, 'Attempting GSS-API auth... (gssapi-keyex)')
self.auth_gssapi_keyex(username)