From 5b1577c4390001f2a926143efdc121fd95c0efc8 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Wed, 4 Aug 2004 10:10:10 +0000 Subject: Removed the 'identity' arg in lasso_login_new_from_dump() method --- python/lasso.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/lasso.py') diff --git a/python/lasso.py b/python/lasso.py index f2fd794c..e1b7a8dd 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -1006,8 +1006,8 @@ class Login(Profile): return Login(obj) new = classmethod(new) - def new_from_dump(cls, server, identity, dump): - obj = lassomod.login_new_from_dump(server, identity, dump) + def new_from_dump(cls, server, dump): + obj = lassomod.login_new_from_dump(server, dump) return Login(obj) new_from_dump = classmethod(new_from_dump) -- cgit