diff options
Diffstat (limited to 'python/lasso.py')
-rw-r--r-- | python/lasso.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/lasso.py b/python/lasso.py index 000709c3..855ba163 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -1017,7 +1017,10 @@ class Logout: return lassomod.logout_build_response_msg(self) def destroy(self): - pass + lassomod.logout_destroy(self); + + def get_next_providerID(self): + return lassomod.logout_get_next_providerID(self); def init_request(self, remote_providerID = None): return lassomod.logout_init_request(self, remote_providerID); |