summaryrefslogtreecommitdiff
path: root/src/saml2/httpbase.py
diff options
context:
space:
mode:
authorRoland Hedberg <roland.hedberg@adm.umu.se>2013-04-15 13:25:29 +0200
committerRoland Hedberg <roland.hedberg@adm.umu.se>2013-04-15 13:25:29 +0200
commitb23a379c8c3666c30c47d4066047a1ff6d9997a2 (patch)
tree52a4009517d319ad14f775be024dbc8370ed65c0 /src/saml2/httpbase.py
parentf7be16fbd73dfb81dee5445167cd9816bc0f2df0 (diff)
downloadpysaml2-b23a379c8c3666c30c47d4066047a1ff6d9997a2.tar.gz
Need argument name.
Diffstat (limited to 'src/saml2/httpbase.py')
-rw-r--r--src/saml2/httpbase.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/saml2/httpbase.py b/src/saml2/httpbase.py
index 9410bfe3..f13b05f5 100644
--- a/src/saml2/httpbase.py
+++ b/src/saml2/httpbase.py
@@ -303,9 +303,8 @@ class HTTPBase(object):
logger.debug("SOAP message: %s" % soap_message)
if sign and self.sec:
- _signed = self.sec.sign_statement_using_xmlsec(soap_message,
- class_name(request),
- nodeid=request.id)
+ _signed = self.sec.sign_statement_using_xmlsec(
+ soap_message, class_name=class_name(request), nodeid=request.id)
soap_message = _signed
return {"url": destination, "method": "POST",