summary refs log tree commit diff
path: root/synapse/handlers/auth.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2017-10-20 16:33:15 +0100
committerRichard van der Hoff <richard@matrix.org>2017-10-20 22:14:55 +0100
commit631d7b87b50b7263a2f9a3f89fc196272011bf37 (patch)
treed0b93dc743a38764ea5d240889fbc72804786486 /synapse/handlers/auth.py
parentMerge pull request #2559 from matrix-org/erikj/group_id_validation (diff)
downloadsynapse-631d7b87b50b7263a2f9a3f89fc196272011bf37.tar.xz
Remove pointless create() method
It just calls the constructor, so we may as well kill it rather than having
random codepaths.
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 b00446bec0..9cef9d184b 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -267,7 +267,7 @@ class AuthHandler(BaseHandler):
         user_id = authdict["user"]
         password = authdict["password"]
         if not user_id.startswith('@'):
-            user_id = UserID.create(user_id, self.hs.hostname).to_string()
+            user_id = UserID(user_id, self.hs.hostname).to_string()
 
         return self._check_password(user_id, password)