summaryrefslogtreecommitdiff
path: root/src/saml2/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/client.py')
-rw-r--r--src/saml2/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saml2/client.py b/src/saml2/client.py
index 65491a24..2bd1eabd 100644
--- a/src/saml2/client.py
+++ b/src/saml2/client.py
@@ -14,7 +14,7 @@ from saml2 import BINDING_HTTP_REDIRECT
from saml2 import BINDING_HTTP_POST
from saml2 import BINDING_SOAP
-import saml2.xmldsig as ds
+from saml2.xmldsig import DefaultSignature
from saml2.ident import decode, code
from saml2.httpbase import HTTPError
@@ -264,7 +264,7 @@ class Saml2Client(Base):
if sign is None:
sign = self.logout_requests_signed
- def_sig = ds.DefaultSignature()
+ def_sig = DefaultSignature()
sign_alg = def_sig.get_sign_alg() if sign_alg is None else sign_alg
digest_alg = (
def_sig.get_digest_alg()