include default options. #7938
amend ansible-doc to include default options as per feature request #7938
This commit is contained in:
parent
14cf3c4d2a
commit
37318ca095
1 changed files with 3 additions and 0 deletions
|
@ -113,6 +113,9 @@ def get_man_text(doc):
|
|||
if 'choices' in opt:
|
||||
choices = ", ".join(str(i) for i in opt['choices'])
|
||||
desc = desc + " (Choices: " + choices + ")"
|
||||
if 'default' in opt:
|
||||
default = str(opt['default'])
|
||||
desc = desc + " [Default: " + default + "]"
|
||||
text.append("%s\n" % textwrap.fill(tty_ify(desc), initial_indent=opt_indent,
|
||||
subsequent_indent=opt_indent))
|
||||
|
||||
|
|
Loading…
Reference in a new issue