From 160273e8360db55d959c60699461980d159f21ac Mon Sep 17 00:00:00 2001 From: feuerfrei92 Date: Mon, 6 Dec 2021 18:30:49 +0200 Subject: Fixed logging of attributes with '.' in their name --- src/saml2/response.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/saml2/response.py b/src/saml2/response.py index a050d58e..432fe5de 100644 --- a/src/saml2/response.py +++ b/src/saml2/response.py @@ -833,7 +833,7 @@ class AuthnResponse(StatusResponse): # if self.context == "AuthnReq" or self.context == "AttrQuery": # self.ava = self.get_identity() - # logger.debug("--- AVA: %s", self.ava) + # logger.debug("--- AVA: {0}".format(self.ava)) try: self.get_subject() @@ -1036,7 +1036,7 @@ class AuthnResponse(StatusResponse): if self.context == "AuthnReq" or self.context == "AttrQuery": self.ava = self.get_identity() - logger.debug("--- AVA: %s", self.ava) + logger.debug("--- AVA: {0}".format(self.ava)) return True -- cgit v1.2.1