diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-04 10:10:10 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-04 10:10:10 +0000 |
| commit | 5b1577c4390001f2a926143efdc121fd95c0efc8 (patch) | |
| tree | 13c664761600deb6a4c948c45acace03792704e6 /python/lasso.py | |
| parent | 7769487654652494fbbe06b9670845209a03b45a (diff) | |
| download | lasso-5b1577c4390001f2a926143efdc121fd95c0efc8.tar.gz lasso-5b1577c4390001f2a926143efdc121fd95c0efc8.tar.xz lasso-5b1577c4390001f2a926143efdc121fd95c0efc8.zip | |
Removed the 'identity' arg in lasso_login_new_from_dump() method
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
