From c5c0515bb2202e58d3534d23794332eef2dbe36e Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Mon, 26 Jul 2004 18:36:17 +0000 Subject: *** empty log message *** --- python/lasso.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'python') 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) -- cgit