summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-04 10:10:10 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-04 10:10:10 +0000
commit5b1577c4390001f2a926143efdc121fd95c0efc8 (patch)
tree13c664761600deb6a4c948c45acace03792704e6 /python/lasso.py
parent7769487654652494fbbe06b9670845209a03b45a (diff)
downloadlasso-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.py4
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)