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/frontend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/frontend.py') diff --git a/ipalib/frontend.py b/ipalib/frontend.py index 45f5b74c6..9c7b80ba1 100644 --- a/ipalib/frontend.py +++ b/ipalib/frontend.py @@ -848,13 +848,13 @@ class Command(HasParam): if isinstance(o, (Entry, ListOfEntries)): yield Flag('all', cli_name='all', - doc=_('retrieve and print all attributes from the server. Affects command output.'), + doc=_('Retrieve and print all attributes from the server. Affects command output.'), exclude='webui', flags=['no_output'], ) yield Flag('raw', cli_name='raw', - doc=_('print entries as stored on the server. Only affects output format.'), + doc=_('Print entries as stored on the server. Only affects output format.'), exclude='webui', flags=['no_output'], ) -- cgit