mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-18 07:52:56 +01:00
Remove not required parenthesis
This commit is contained in:
parent
01a5f1991c
commit
7f8fdc9814
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class LoginRestServlet(ClientV1RestServlet):
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def do_cas_login(self, cas_response_body):
|
def do_cas_login(self, cas_response_body):
|
||||||
(user, attributes) = self.parse_cas_response(cas_response_body)
|
user, attributes = self.parse_cas_response(cas_response_body)
|
||||||
|
|
||||||
for required_attribute in self.cas_required_attributes:
|
for required_attribute in self.cas_required_attributes:
|
||||||
# If required attribute was not in CAS Response - Forbidden
|
# If required attribute was not in CAS Response - Forbidden
|
||||||
|
|
Loading…
Reference in a new issue