summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-21 17:12:21 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-21 17:12:21 +0000
commit5dc6f94ffd3bbf0d45559068c86da4247bd454e8 (patch)
tree13cf6efee4e35b60c0d91347b1bb34429bfdd0ca /python/lasso.py
parent87e3c2dbfc60a82b6d4b48f2bc2b4f34e3c6abad (diff)
downloadlasso-5dc6f94ffd3bbf0d45559068c86da4247bd454e8.tar.gz
lasso-5dc6f94ffd3bbf0d45559068c86da4247bd454e8.tar.xz
lasso-5dc6f94ffd3bbf0d45559068c86da4247bd454e8.zip
Moved param 'http_method' of lasso_login_build_authn_request_msg() method
in lasso_login_init_authn_request() BEWARE : this change breaks the API
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 461e5f4a..ce8ede4f 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -472,9 +472,9 @@ class Login(_ObjectMixin, lassomod.LassoLogin, _ProfileChild):
if errorCode:
raise newError(errorCode, 'lasso_login_build_artifact_msg')
- def build_authn_request_msg(self, remote_providerID, http_method):
+ def build_authn_request_msg(self, remote_providerID):
errorCode = lassomod.lasso_login_build_authn_request_msg(
- self, remote_providerID, http_method)
+ self, remote_providerID)
if errorCode:
raise newError(errorCode, 'lasso_login_build_authn_request_msg')
@@ -493,8 +493,8 @@ class Login(_ObjectMixin, lassomod.LassoLogin, _ProfileChild):
def dump(self):
return lassomod.lasso_login_dump(self)
- def init_authn_request(self):
- errorCode = lassomod.lasso_login_init_authn_request(self)
+ def init_authn_request(self, http_method):
+ errorCode = lassomod.lasso_login_init_authn_request(self, http_method)
if errorCode:
raise newError(errorCode, 'lasso_login_init_authn_request')