Fix ansible-galaxy man page generation (#65478)
The Action list was misformatted, leading to an error message in the man page. https://bugzilla.redhat.com/show_bug.cgi?id=1717110
This commit is contained in:
parent
2a7623dd5c
commit
9973121f44
1 changed files with 1 additions and 1 deletions
2
docs/templates/man.j2
vendored
2
docs/templates/man.j2
vendored
|
@ -48,7 +48,7 @@ ACTIONS
|
|||
-------
|
||||
{% for action in actions %}
|
||||
**{{ action }}**
|
||||
{{ (actions[action]['desc']|default(' '))}}
|
||||
{{ (actions[action]['desc']|default(' ')) |replace('\n', ' ')}}
|
||||
|
||||
{% if actions[action]['options'] %}
|
||||
{% for option in actions[action]['options']|sort(attribute='options') %}
|
||||
|
|
Loading…
Reference in a new issue