From 5dc6f94ffd3bbf0d45559068c86da4247bd454e8 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Sat, 21 Aug 2004 17:12:21 +0000 Subject: Moved param 'http_method' of lasso_login_build_authn_request_msg() method in lasso_login_init_authn_request() BEWARE : this change breaks the API --- python/lasso.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python/lasso.py') 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') -- cgit