summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-26 18:36:17 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-26 18:36:17 +0000
commitc5c0515bb2202e58d3534d23794332eef2dbe36e (patch)
tree2fd4cb77e960001311b5795fd7f359c73352088c /python/lasso.py
parent002aab58211182377e4f7233722762ee52c7261f (diff)
downloadlasso-c5c0515bb2202e58d3534d23794332eef2dbe36e.tar.gz
lasso-c5c0515bb2202e58d3534d23794332eef2dbe36e.tar.xz
lasso-c5c0515bb2202e58d3534d23794332eef2dbe36e.zip
*** empty log message ***
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 9934e837..8d5bec62 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -1004,11 +1004,17 @@ providerTypeNone = 0
providerTypeSp = 1
providerTypeIdp = 2
-class Logout:
+class Logout(ProfileContext):
"""\brief Short desc
Long desc
"""
+ def __init__(self, _obj):
+ """
+ The constructor
+ """
+ self._o = _obj
+ ProfileContext.__init__(self, _obj=_obj)
def __isprivate(self, name):
return name == '_o'
@@ -1029,12 +1035,6 @@ class Logout:
ret = LogoutResponse(_obj=ret)
return ret
- def __init__(self, _obj):
- """
- The constructor
- """
- self._o = _obj
-
def new(cls, server, provider_type):
obj = lassomod.logout_new(server, provider_type)
return Logout(obj)