diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-06-06 12:08:24 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-06-06 12:08:24 -0700 |
commit | 7185d294a38dbf06a5ebebc3528c45cf18e1fdfc (patch) | |
tree | 37a4f0b7dd7984ddad13427758f9c036301e21fa | |
parent | 1770f24202b24461cd7b10ed0650cb269576392b (diff) |
Trailing comma
-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 4d064751..7693c354 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -236,7 +236,7 @@ class Transport(threading.Thread, ClosingContextManager): 'gss-gex-sha1-toWM5Slw5Ew8Mqkay+al2g==': KexGSSGex, 'ecdh-sha2-nistp256': KexNistp256, 'ecdh-sha2-nistp384': KexNistp384, - 'ecdh-sha2-nistp521': KexNistp521 + 'ecdh-sha2-nistp521': KexNistp521, } _compression_info = { |