summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-04-16 13:18:12 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-04-16 13:18:12 +0000
commitc428b47b09d5ee05abcdd681c6c1c32d3c1a7117 (patch)
tree9af3b3995a1ca87d141b640bea7c94ce9c70d16e /python
parent567dc663b0d6d130e6e4d783bb3e91e9445a4aba (diff)
downloadlasso-c428b47b09d5ee05abcdd681c6c1c32d3c1a7117.tar.gz
lasso-c428b47b09d5ee05abcdd681c6c1c32d3c1a7117.tar.xz
lasso-c428b47b09d5ee05abcdd681c6c1c32d3c1a7117.zip
fix : logout_request_getattr(self, name)
Diffstat (limited to 'python')
-rw-r--r--python/lasso.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 6363e3e3..a85cd79e 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -162,7 +162,7 @@ class LogoutRequest:
return self.__dict__[name]
if name[:2] == "__" and name[-2:] == "__" and name != "__members__":
raise AttributeError, name
- ret = lassomod.authn_logout_getattr(self, name)
+ ret = lassomod.logout_request_getattr(self, name)
if ret is None:
raise AttributeError, name
if name == "node":