summaryrefslogtreecommitdiff
path: root/paramiko/auth_handler.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-05-31 18:03:12 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-05-31 18:03:12 -0700
commit25de2a02048897752df356189017b22a49d37f88 (patch)
tree60ee505fa6a9c8b11852b1b9a8dd06bcdc89936e /paramiko/auth_handler.py
parentf95f0eb1fb82da7ead513dac352ec92712d68e24 (diff)
downloadparamiko-25de2a02048897752df356189017b22a49d37f88.tar.gz
More death to line continuations
Diffstat (limited to 'paramiko/auth_handler.py')
-rw-r--r--paramiko/auth_handler.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/paramiko/auth_handler.py b/paramiko/auth_handler.py
index 83c5a575..2de71241 100644
--- a/paramiko/auth_handler.py
+++ b/paramiko/auth_handler.py
@@ -313,8 +313,10 @@ class AuthHandler (object):
else:
raise SSHException(
"Received Package: %s" % MSG_NAMES[ptype])
- elif self.auth_method == 'gssapi-keyex' and\
- self.transport.gss_kex_used:
+ elif (
+ self.auth_method == 'gssapi-keyex' and
+ self.transport.gss_kex_used
+ ):
kexgss = self.transport.kexgss_ctxt
kexgss.set_username(self.username)
mic_token = kexgss.ssh_get_mic(self.transport.session_id)