summary refs log tree commit diff
path: root/synapse/handlers/auth.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2017-03-08 11:03:39 +0000
committerDavid Baker <dave@matrix.org>2017-03-08 11:03:39 +0000
commit88df6c0c9a7ce12e7875680131cac421da87ad60 (patch)
tree5489a7e0afc0ed73fbd7e96fdf7c413b7c1586a1 /synapse/handlers/auth.py
parentFix pep8 (diff)
downloadsynapse-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.py2
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: