summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 5d886bd1..359f1a49 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -860,14 +860,14 @@ class User:
def destroy(self):
lassomod.user_destroy(self)
- def get_assertion(self):
- pass
+ def get_assertion(self, providerID):
+ return Node(lassomod.user_get_assertion(self, providerID))
def get_next_providerID(self):
return lassomod.user_get_next_providerID(self)
def remove_assertion(self, providerID):
- return lassomod.user_remove_assertion(self, providerID)
+ lassomod.user_remove_assertion(self, providerID)
loginProtocolProfileBrwsArt = 1
loginProtocolProfileBrwsPost = 2