diff options
Diffstat (limited to 'coip/apps/saml2/views.py')
-rw-r--r-- | coip/apps/saml2/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coip/apps/saml2/views.py b/coip/apps/saml2/views.py index 1c44c51..28f533d 100644 --- a/coip/apps/saml2/views.py +++ b/coip/apps/saml2/views.py @@ -108,7 +108,7 @@ def aq(request): aa = server.Server(config=cnf, log=logging, debug=1, stype="aa") request_xml = soap.parse_soap_enveloped_saml_attribute_query(request.raw_post_data) logging.debug(request_xml) - (subject, attribute, aq) = parse_attribute_query(aa,request_xml,False) + (subject, attribute, aq) = aa.parse_attribute_query(request_xml,False) sp_entityid = aq.issuer.text claims = {} |