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/auth.py | |
parent | comment (diff) | |
download | synapse-9700d15611ec93d1177d29181362fbd02df92629.tar.xz |
pep8
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index c3f20417c7..512c31185d 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -826,7 +826,8 @@ class AuthHandler(BaseHandler): address = address.lower() identity_handler = self.hs.get_handlers().identity_handler - identity_handler.unbind_threepid(user_id, + identity_handler.unbind_threepid( + user_id, { 'medium': medium, 'address': address, |