summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/lasso.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/lasso.py b/python/lasso.py
index ddc1fdfa..1fcb26a4 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -642,6 +642,11 @@ class Logout(_ObjectMixin, lassomod.LassoLogout, _ProfileChild):
if errorCode:
raise newError(errorCode, 'lasso_logout_process_response_msg')
+ def reset_session_index(self):
+ errorCode = lassomod.lasso_logout_reset_session_index(self)
+ if errorCode:
+ raise newError(errorCode, 'lasso_logout_reset_session_index')
+
def validate_request(self):
errorCode = lassomod.lasso_logout_validate_request(self)
if errorCode: