summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-03-07 11:31:46 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-03-07 11:31:46 -0800
commit77f3b07f129359cc58b74a0550546c6a141d7dd0 (patch)
tree9b9a8e52a9b9d084d8a260122d28a342738bd575
parent8d08cc926a10e6e3d494ccbf9fb178f2671e4aec (diff)
downloadparamiko-77f3b07f129359cc58b74a0550546c6a141d7dd0.tar.gz
A missed line from the merge.
-rw-r--r--paramiko/hostkeys.py1
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':