[Python 3]: Added fix for bytestring instead of unicode string decoding in Python 3.

This commit is contained in:
Dorian 2013-10-25 17:29:32 -04:00
parent 9ffd9efb20
commit 3cb91a0e9e
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ import os
from Crypto.Hash import MD5
from Crypto.Cipher import DES3, AES
import six
from paramiko.common import *
from paramiko import util
@ -303,7 +304,7 @@ class PKey (object):
end += 1
# if we trudged to the end of the file, just try to cope.
try:
data = base64.decodestring(''.join(lines[start:end]))
data = base64.decodestring(six.b(''.join(lines[start:end])))
except base64.binascii.Error as e:
raise SSHException('base64 decoding error: ' + str(e))
if 'proc-type' not in headers: