diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-16 12:49:29 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-16 12:49:29 +0000 |
| commit | 150005bf3978815c6b7678b5482bde89a3191a40 (patch) | |
| tree | 16ee9651f3da5d19eeb7d9b5f4fe059a41c84b08 /python/lasso.py | |
| parent | 8ff0d93d6e96c61fddb30e6b8c42fa056ceec8c0 (diff) | |
| download | lasso-150005bf3978815c6b7678b5482bde89a3191a40.tar.gz lasso-150005bf3978815c6b7678b5482bde89a3191a40.tar.xz lasso-150005bf3978815c6b7678b5482bde89a3191a40.zip | |
*** empty log message ***
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 6 |
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 |
