diff options
author | David Baker <dave@matrix.org> | 2017-03-08 11:03:39 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2017-03-08 11:03:39 +0000 |
commit | 88df6c0c9a7ce12e7875680131cac421da87ad60 (patch) | |
tree | 5489a7e0afc0ed73fbd7e96fdf7c413b7c1586a1 /synapse/handlers/auth.py | |
parent | Fix pep8 (diff) | |
download | synapse-88df6c0c9a7ce12e7875680131cac421da87ad60.tar.xz |
Factor out msisdn canonicalisation
Plus a couple of other minor fixes
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 620591b165..b273a4bee7 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -321,7 +321,7 @@ class AuthHandler(BaseHandler): defer.returnValue(True) @defer.inlineCallbacks - def _check_threepid(self, medium, authdict, ): + def _check_threepid(self, medium, authdict): yield run_on_reactor() if 'threepid_creds' not in authdict: |