mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
fix pep8
This commit is contained in:
parent
67f3a50e9a
commit
875ed05bdc
@ -358,7 +358,6 @@ class AuthHandler(BaseHandler):
|
||||
logger.warn("Failed password login for user %s", user_id)
|
||||
raise LoginError(403, "", errcode=Codes.FORBIDDEN)
|
||||
|
||||
|
||||
logger.info("Logging in user %s", user_id)
|
||||
access_token = yield self.issue_access_token(user_id)
|
||||
refresh_token = yield self.issue_refresh_token(user_id)
|
||||
@ -466,8 +465,8 @@ class AuthHandler(BaseHandler):
|
||||
l.simple_bind_s(dn.encode('utf-8'), password.encode('utf-8'))
|
||||
|
||||
if not (yield self.does_user_exist(user_id)):
|
||||
handler = self.hs.get_handlers().registration_handler
|
||||
user_id, access_token = (
|
||||
handler = self.hs.get_handlers().registration_handler
|
||||
yield handler.register(localpart=local_name)
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user