mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Only display equals sign in summary for required options.
This commit is contained in:
parent
30cabddf76
commit
e1b7278265
1 changed files with 6 additions and 1 deletions
|
@ -149,7 +149,12 @@ def get_snippet_text(doc):
|
|||
for o in sorted(doc['options'].keys()):
|
||||
opt = doc['options'][o]
|
||||
desc = tty_ify("".join(opt['description']))
|
||||
s = o + "="
|
||||
|
||||
if opt.get('required', False):
|
||||
s = o + "="
|
||||
else:
|
||||
s = o
|
||||
|
||||
text.append(" %-20s # %s" % (s, desc))
|
||||
text.append('')
|
||||
|
||||
|
|
Loading…
Reference in a new issue