From 4d0e739345fe3039db16e0ee613431e1aa92cf02 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 4 Mar 2011 11:08:54 -0500 Subject: Fix style and grammatical issues in built-in command help. There is a rather large API.txt change but it is only due to changes in the doc string in parameters. ticket 729 --- ipalib/plugins/baseldap.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipalib/plugins/baseldap.py') diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py index ff034c61..8053b278 100644 --- a/ipalib/plugins/baseldap.py +++ b/ipalib/plugins/baseldap.py @@ -411,8 +411,8 @@ _attr_options = ( ), Str('setattr*', validate_set_attribute, cli_name='setattr', - doc=_("""Set an attribute to an name/value pair. Format is attr=value. -For multivalued attributes, the command replaces the values already present."""), + doc=_("""Set an attribute to a name/value pair. Format is attr=value. +For multi-valued attributes, the command replaces the values already present."""), exclude='webui', ), ) @@ -1247,8 +1247,8 @@ class LDAPSearch(CallbackInterface, crud.Search): Retrieve all LDAP entries matching the given criteria. """ member_attributes = [] - member_param_incl_doc = 'only %s with %s %s' - member_param_excl_doc = 'only %s with no %s %s' + member_param_incl_doc = 'Search for %s with these %s %s.' + member_param_excl_doc = 'Search for %s without these %s %s.' takes_options = ( Int('timelimit?', -- cgit