From 47871da2163c016272749887e422d70829cdc752 Mon Sep 17 00:00:00 2001 From: Nicolas Clapies Date: Mon, 19 Apr 2004 10:16:44 +0000 Subject: add add_assertion method for Response object --- python/lasso.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/lasso.py') diff --git a/python/lasso.py b/python/lasso.py index a85cd79e..a33589cd 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -227,6 +227,9 @@ class Response: def init(self, authentication_result): return lassomod.response_init(self, authentication_result) + def add_assertion(self, assertion): + return lassomod.response_add_assertion(self, assertion) + class Node: def __init__(self, _obj=None): """ -- cgit