diff options
author | David Baker <dave@matrix.org> | 2018-06-04 12:01:23 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-06-04 12:01:23 +0100 |
commit | 6a29e815fc58fec00b6f7001a20f29bc367a55fc (patch) | |
tree | b4bd2c95811de794f2e7e55c1103210409c3aed2 /synapse | |
parent | Missing yield (diff) | |
download | synapse-6a29e815fc58fec00b6f7001a20f29bc367a55fc.tar.xz |
Fix comment
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/deactivate_account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py index ce6e2b14fe..8ec5ba2012 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py @@ -76,7 +76,7 @@ class DeactivateAccountHandler(BaseHandler): user_id, threepid['medium'], threepid['address'], ) - # first delete any devices belonging to the user, which will also + # delete any devices belonging to the user, which will also # delete corresponding access tokens. yield self._device_handler.delete_all_devices_for_user(user_id) # then delete any remaining access tokens which weren't associated with |