diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-03-04 11:08:54 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-03-04 11:09:43 -0500 |
commit | 4d0e739345fe3039db16e0ee613431e1aa92cf02 (patch) | |
tree | 87fe8f94e7b7265cd12b8a78eca89cedb87ad160 /ipalib/plugins/baseldap.py | |
parent | c0ecdd1395e457592407c2d4d622a2758896d8ca (diff) | |
download | freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.tar.gz freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.tar.xz freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.zip |
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
Diffstat (limited to 'ipalib/plugins/baseldap.py')
-rw-r--r-- | ipalib/plugins/baseldap.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py index ff034c619..8053b2786 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?', |