summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeuerfrei92 <kolega_kz@abv.bg>2021-12-06 18:30:49 +0200
committerGitHub <noreply@github.com>2021-12-06 18:30:49 +0200
commit160273e8360db55d959c60699461980d159f21ac (patch)
tree63db6691b2f4884234c7b775a77bf673ebec6ba5
parent72e69e43f555e3f37e8a21a89ac1f34402700a31 (diff)
downloadpysaml2-160273e8360db55d959c60699461980d159f21ac.tar.gz
Fixed logging of attributes with '.' in their name
-rw-r--r--src/saml2/response.py4
1 files 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