From d2b46f176e5dbc40b67ebd90e6953498c5d6249a Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 23 Oct 2008 14:36:24 -0400 Subject: Use common display function for user-show and user-find. Add --all option to user-find Fix command-line help to make sense on searches as well --- ipalib/crud.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ipalib/crud.py') diff --git a/ipalib/crud.py b/ipalib/crud.py index ba4d5718..6194b3fa 100644 --- a/ipalib/crud.py +++ b/ipalib/crud.py @@ -63,6 +63,8 @@ class Find(frontend.Method): def get_options(self): for param in self.obj.params_minus_pk(): yield param.__clone__(required=False) + for option in self.takes_options: + yield option class CrudBackend(backend.Backend): -- cgit