diff options
author | Robey Pointer <robey@lag.net> | 2006-05-29 23:59:45 -0700 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2006-05-29 23:59:45 -0700 |
commit | e0f0ae5eb29cb8bffa9dba9a2723cba504bd54d5 (patch) | |
tree | c5a5df59b20207411f5f04b036c097f24e960892 | |
parent | 471876ff3e0cbd62e786303fce67fc5a0cc3a01c (diff) |
[project @ robey@lag.net-20060530065945-158cc1305bfc2c82]
missed the client id
-rw-r--r-- | paramiko/transport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index d61207af..7d714ddb 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -149,7 +149,7 @@ class Transport (threading.Thread): """ _PROTO_ID = '2.0' - _CLIENT_ID = 'paramiko_1.5.4' + _CLIENT_ID = 'paramiko_1.6' _preferred_ciphers = ( 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc' ) _preferred_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' ) |