summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2020-04-21 20:53:46 +0300
committerIvan Kanakarakis <ivan.kanak@gmail.com>2020-05-12 13:43:31 +0300
commitb8539198eb02149510a831e2c93c88ef8c438042 (patch)
tree9d26a027d92f02f72e6d34a1df362638edb2c34a
parentc82c3be2595c42dffefe90508248bc88b232863e (diff)
downloadpysaml2-b8539198eb02149510a831e2c93c88ef8c438042.tar.gz
Fix check for signed logout
``` ************* Module saml2.client src/saml2/client.py:225:27: E1101: Instance of 'Saml2Client' has no 'logout_requests_signed' member (no-member) ``` The reference should be through the config member of the Saml2Client object. Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
-rw-r--r--src/saml2/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saml2/client.py b/src/saml2/client.py
index 3dd447df..c92c6b1e 100644
--- a/src/saml2/client.py
+++ b/src/saml2/client.py
@@ -222,7 +222,7 @@ class Saml2Client(Base):
sign = True
if sign is None:
- sign = self.logout_requests_signed
+ sign = self.config.logout_requests_signed
sigalg = None
if sign: