diff options
Diffstat (limited to 'transport.py')
-rw-r--r-- | transport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.py b/transport.py index 9e439344..a646b58f 100644 --- a/transport.py +++ b/transport.py @@ -532,7 +532,7 @@ class BaseTransport(threading.Thread): m.add_byte(chr(MSG_KEXINIT)) m.add_bytes(randpool.get_bytes(16)) m.add(','.join(self.preferred_kex)) - m.add(','.join(self.available_server_keys)) + m.add(','.join(available_server_keys)) m.add(','.join(self.preferred_ciphers)) m.add(','.join(self.preferred_ciphers)) m.add(','.join(self.preferred_macs)) |