diff options
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r-- | ipalib/cli.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index ab2918b5..59abc3b1 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -664,7 +664,10 @@ class help(frontend.Local): Display help for a command or topic. """ - takes_args = (Str('command?'),) + takes_args = ( + Str('command?', cli_name='topic', label=_('Topic or Command'), + doc=_('The topic or command name.')), + ) takes_options = ( Any('outfile?', flags=['no_option']), ) |