diff --git a/PFERD/ilias/authenticators.py b/PFERD/ilias/authenticators.py index 08c6922..5443d99 100644 --- a/PFERD/ilias/authenticators.py +++ b/PFERD/ilias/authenticators.py @@ -90,7 +90,7 @@ class KitShibbolethAuthenticator(IliasAuthenticator): relay_state = soup.find("input", {"name": "RelayState"}) saml_response = soup.find("input", {"name": "SAMLResponse"}) url = "https://ilias.studium.kit.edu/Shibboleth.sso/SAML2/POST" - data = { # using the info obtained in the while loop above + data = { # using the info obtained in the while loop above "RelayState": relay_state["value"], "SAMLResponse": saml_response["value"], }