Properly name values passed to EncryptionPrepareException
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
2a346ac48d
commit
96e4ecf683
1 changed files with 3 additions and 1 deletions
|
@ -144,7 +144,9 @@ class MissingOwnKey(XEP0384): pass
|
|||
class NoAvailableSession(XEP0384): pass
|
||||
|
||||
|
||||
class EncryptionPrepareException(XEP0384): pass
|
||||
class EncryptionPrepareException(XEP0384):
|
||||
def __init__(self, errors):
|
||||
self.errors = errors
|
||||
|
||||
|
||||
class UntrustedException(XEP0384):
|
||||
|
|
Loading…
Reference in a new issue