From 6aadeb9aea60165d9c68b348dae4df456b00dfc4 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 22 Jan 2009 09:58:35 -0700 Subject: Added Object.params_minus() method; various small tweaks --- ipalib/plugins/f_user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/plugins/f_user.py') diff --git a/ipalib/plugins/f_user.py b/ipalib/plugins/f_user.py index 506ad14d..f1134fb2 100644 --- a/ipalib/plugins/f_user.py +++ b/ipalib/plugins/f_user.py @@ -183,10 +183,10 @@ class user_add(crud.Add): api.register(user_add) -class user_del(crud.Del): +class user_del(crud.Delete): 'Delete an existing user.' - def execute(self, uid, **kw): + def execute(self, uid): """Delete a user. Not to be confused with inactivate_user. This makes the entry go away completely. -- cgit