summaryrefslogtreecommitdiff
path: root/paramiko/kex_gss.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-09-08 17:26:20 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-09-08 17:26:20 -0700
commitf2e90f1446e80c0941ec3f7e0bd411d6e858bb04 (patch)
tree170d7d88104df1ac86f04aa87f7c033c5a4dd8c6 /paramiko/kex_gss.py
parentae3760ecd982f26079adc78b71249cd2b094d9ef (diff)
downloadparamiko-f2e90f1446e80c0941ec3f7e0bd411d6e858bb04.tar.gz
More of these things
Diffstat (limited to 'paramiko/kex_gss.py')
-rw-r--r--paramiko/kex_gss.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/paramiko/kex_gss.py b/paramiko/kex_gss.py
index cdb18496..a4e60909 100644
--- a/paramiko/kex_gss.py
+++ b/paramiko/kex_gss.py
@@ -180,10 +180,7 @@ class KexGSSGroup1(object):
if (self.f < 1) or (self.f > self.P - 1):
raise SSHException('Server kex "f" is out of range')
mic_token = m.get_string()
- """
- This must be TRUE, if there is a GSS-API token in this
- message.
- """
+ # This must be TRUE, if there is a GSS-API token in this message.
bool = m.get_boolean()
srv_token = None
if bool:
@@ -545,10 +542,7 @@ class KexGSSGex(object):
self.transport.host_key = NullHostKey()
self.f = m.get_mpint()
mic_token = m.get_string()
- """
- This must be TRUE, if there is a GSS-API token in this
- message.
- """
+ # This must be TRUE, if there is a GSS-API token in this message.
bool = m.get_boolean()
srv_token = None
if bool: