diff options
| author | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-26 19:14:25 +0000 |
|---|---|---|
| committer | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-26 19:14:25 +0000 |
| commit | f642e8bfbc3573844941bf2fbd58301b638adf43 (patch) | |
| tree | f9ddab1dbd49eefde3a8df85b5667252f779d9c4 /python | |
| parent | 0c32f3bcbbc00f63f126098cc451a9cd2a22f3c4 (diff) | |
| download | lasso-f642e8bfbc3573844941bf2fbd58301b638adf43.tar.gz lasso-f642e8bfbc3573844941bf2fbd58301b638adf43.tar.xz lasso-f642e8bfbc3573844941bf2fbd58301b638adf43.zip | |
Forgot to declare a parameter as optionnal.
Diffstat (limited to 'python')
| -rw-r--r-- | python/lasso.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lasso.py b/python/lasso.py index 89160616..2ce9f9d6 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -598,7 +598,7 @@ class Logout(_ObjectMixin, lassomod.LassoLogout, _ProfileChild): def get_next_providerID(self): return lassomod.lasso_logout_get_next_providerID(self) - def init_request(self, remote_providerID, request_method = httpMethodAny): + def init_request(self, remote_providerID = None, request_method = httpMethodAny): errorCode = lassomod.lasso_logout_init_request(self, remote_providerID, request_method) if errorCode: raise newError(errorCode, 'lasso_logout_init_request') |
