diff --git a/briar_wrapper/exceptions/pending_already_exists_contact.py b/briar_wrapper/exceptions/pending_already_exists_contact.py index e012133e6cd30d2630d2f7e2a51432ebb3133ef3..1b293929e9bf4fe90237aedfd8f0890c9c83e025 100644 --- a/briar_wrapper/exceptions/pending_already_exists_contact.py +++ b/briar_wrapper/exceptions/pending_already_exists_contact.py @@ -13,4 +13,4 @@ class PendingContactAlreadyExistsContact(BriarWrapperException): self.response = response error = response.json() self.remote_author_name = error["remoteAuthorName"] - super().__init__(message) + super().__init__(response, message) diff --git a/briar_wrapper/exceptions/pending_already_exists_pending_contact.py b/briar_wrapper/exceptions/pending_already_exists_pending_contact.py index 55525730fc6b52063150494bc774a68b1217bb20..63c23a3d88c40c7f1ae470d218fb97a3490b8f13 100644 --- a/briar_wrapper/exceptions/pending_already_exists_pending_contact.py +++ b/briar_wrapper/exceptions/pending_already_exists_pending_contact.py @@ -14,4 +14,4 @@ class PendingContactAlreadyExistsPendingContact(BriarWrapperException): error = response.json() self.pending_contact_alias = error["pendingContactAlias"] self.pending_contact_id = error["pendingContactId"] - super().__init__(message) + super().__init__(response, message)