Merge branch '1.13'
This commit is contained in:
commit
a1d291e047
|
@ -59,6 +59,8 @@ class BadAuthenticationType (AuthenticationException):
|
|||
def __init__(self, explanation, types):
|
||||
AuthenticationException.__init__(self, explanation)
|
||||
self.allowed_types = types
|
||||
# for unpickling
|
||||
self.args = (explanation, types, )
|
||||
|
||||
def __str__(self):
|
||||
return SSHException.__str__(self) + ' (allowed_types=%r)' % self.allowed_types
|
||||
|
@ -73,6 +75,8 @@ class PartialAuthentication (AuthenticationException):
|
|||
def __init__(self, types):
|
||||
AuthenticationException.__init__(self, 'partial authentication')
|
||||
self.allowed_types = types
|
||||
# for unpickling
|
||||
self.args = (types, )
|
||||
|
||||
|
||||
class ChannelException (SSHException):
|
||||
|
@ -86,6 +90,8 @@ class ChannelException (SSHException):
|
|||
def __init__(self, code, text):
|
||||
SSHException.__init__(self, text)
|
||||
self.code = code
|
||||
# for unpickling
|
||||
self.args = (code, text, )
|
||||
|
||||
|
||||
class BadHostKeyException (SSHException):
|
||||
|
@ -103,6 +109,8 @@ class BadHostKeyException (SSHException):
|
|||
self.hostname = hostname
|
||||
self.key = got_key
|
||||
self.expected_key = expected_key
|
||||
# for unpickling
|
||||
self.args = (hostname, got_key, expected_key, )
|
||||
|
||||
|
||||
class ProxyCommandFailure (SSHException):
|
||||
|
@ -119,3 +127,5 @@ class ProxyCommandFailure (SSHException):
|
|||
)
|
||||
)
|
||||
self.error = error
|
||||
# for unpickling
|
||||
self.args = (command, error, )
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
* :bug:`-` Added self.args for exception classes. Used for unpickling. Related
|
||||
to (`Fabric #986 <https://github.com/fabric/fabric/issues/986>`_, `Fabric
|
||||
#714 <https://github.com/fabric/fabric/issues/714>`_). Thanks to Alex
|
||||
Plugaru.
|
||||
* :bug:`-` Fix logging error in sftp_client for filenames containing the '%'
|
||||
character. Thanks to Antoine Brenner.
|
||||
* :bug:`308` Fix regression in dsskey.py that caused sporadic signature
|
||||
|
|
Loading…
Reference in New Issue