From 77f3b07f129359cc58b74a0550546c6a141d7dd0 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 7 Mar 2014 11:31:46 -0800 Subject: [PATCH] A missed line from the merge. --- paramiko/hostkeys.py | 1 + 1 file changed, 1 insertion(+) diff --git a/paramiko/hostkeys.py b/paramiko/hostkeys.py index 072a393..801bd50 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':