summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-09-27 17:06:12 +0100
committerBrendan Abolivier <babolivier@matrix.org>2019-09-27 17:06:12 +0100
commit04b779a6ac59a54abfcb5c74922ae22d09ba7646 (patch)
tree212b181391ec06b444de877486963812dfe5c1c5 /synapse
parentIncorporate review (diff)
downloadsynapse-04b779a6ac59a54abfcb5c74922ae22d09ba7646.tar.xz
s/return/defer.returnValue/
Diffstat (limited to 'synapse')
-rw-r--r--synapse/handlers/deactivate_account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py

index cd6f19ec4c..32e004e53e 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py
@@ -132,7 +132,7 @@ class DeactivateAccountHandler(BaseHandler): # Mark the user as deactivated. yield self.store.set_user_deactivated_status(user_id, True) - return identity_server_supports_unbinding + defer.returnValue(identity_server_supports_unbinding) @defer.inlineCallbacks def _reject_pending_invites_for_user(self, user_id):