diff options
author | David Baker <dave@matrix.org> | 2018-05-24 11:23:15 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-05-24 11:23:15 +0100 |
commit | 9700d15611ec93d1177d29181362fbd02df92629 (patch) | |
tree | 901ec633f69674f3b516935df5b03909a24c81d1 /synapse/handlers/deactivate_account.py | |
parent | comment (diff) | |
download | synapse-9700d15611ec93d1177d29181362fbd02df92629.tar.xz |
pep8
Diffstat (limited to 'synapse/handlers/deactivate_account.py')
-rw-r--r-- | synapse/handlers/deactivate_account.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py index 0277f80b75..f92f953a79 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py @@ -60,17 +60,20 @@ class DeactivateAccountHandler(BaseHandler): threepids = yield self.store.user_get_threepids(user_id) for threepid in threepids: try: - yield self._identity_handler.unbind_threepid(user_id, + yield self._identity_handler.unbind_threepid( + user_id, { 'medium': threepid['medium'], 'address': threepid['address'], }, ) - except: + except Exception: # Do we want this to be a fatal error or should we carry on? logger.exception("Failed to remove threepid from ID server") raise SynapseError(400, "Failed to remove threepid from ID server") - yield self.store.user_delete_threepid(user_id, threepid['medium'], threepid['address']) + yield self.store.user_delete_threepid( + user_id, threepid['medium'], threepid['address'], + ) # first delete any devices belonging to the user, which will also # delete corresponding access tokens. |