summaryrefslogtreecommitdiff
path: root/paramiko/pkey.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/pkey.py')
-rw-r--r--paramiko/pkey.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/pkey.py b/paramiko/pkey.py
index 3d786aec..a2f27edd 100644
--- a/paramiko/pkey.py
+++ b/paramiko/pkey.py
@@ -312,8 +312,8 @@ class PKey (object):
# if we trudged to the end of the file, just try to cope.
try:
data = decodebytes(b(''.join(lines[start:end])))
- except base64.binascii.Error:
- raise SSHException('base64 decoding error: ' + str(sys.exc_info()[1]))
+ except base64.binascii.Error as e:
+ raise SSHException('base64 decoding error: ' + str(e))
if 'proc-type' not in headers:
# unencryped: done
return data