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:
Toshio Kuratomi 2019-12-04 11:49:21 -08:00 committed by Alicia Cozine
parent 2a7623dd5c
commit 9973121f44

View file

@ -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') %}