diff options
-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 84e55eb..1c44c51 100644 --- a/coip/apps/saml2/views.py +++ b/coip/apps/saml2/views.py @@ -91,7 +91,7 @@ def parse_attribute_query(aa, xml_string, decode=True): logging.debug(xml_string) attribute_query = attribute_query.loads(xml_string, decode=decode) logging.info(repr(attribute_query)) - attribute_query = attribute_query.verify() + attribute_query = attribute_query._verify() logging.info(repr(attribute_query)) #logging.info("KEYS: %s" % attribute_query.message.keys()) # Subject is described in the a saml.Subject instance |