diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-03-07 11:31:46 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-03-07 11:31:46 -0800 |
commit | 77f3b07f129359cc58b74a0550546c6a141d7dd0 (patch) | |
tree | 9b9a8e52a9b9d084d8a260122d28a342738bd575 | |
parent | 8d08cc926a10e6e3d494ccbf9fb178f2671e4aec (diff) |
A missed line from the merge.
-rw-r--r-- | paramiko/hostkeys.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/paramiko/hostkeys.py b/paramiko/hostkeys.py index 072a393a..801bd50b 100644 --- a/paramiko/hostkeys.py +++ b/paramiko/hostkeys.py @@ -317,6 +317,7 @@ class HostKeyEntry: # Decide what kind of key we're looking at and create an object # to hold it accordingly. try: + key = b(key) if keytype == 'ssh-rsa': key = RSAKey(data=decodebytes(key)) elif keytype == 'ssh-dss': |