From a89d0d09197ea40a59d173839261c4e8f2dd3b0f Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 3 Apr 2018 10:56:12 -0500 Subject: [PATCH] Ensure that arguments for sub commands are properly indented (#37992) --- docs/templates/man.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates/man.j2 b/docs/templates/man.j2 index 9ded1ec68fb..6755a545274 100644 --- a/docs/templates/man.j2 +++ b/docs/templates/man.j2 @@ -52,7 +52,7 @@ ACTIONS {% if actions[action]['options'] %} {% for option in actions[action]['options']|sort(attribute='options') %} -{% for switch in option['options'] if switch in actions[action]['option_names'] %}**{{switch}}**{% if option['arg'] %} '{{option['arg']}}'{% endif %}{% if not loop.last %}, {% endif %}{% endfor %} +{% for switch in option['options'] if switch in actions[action]['option_names'] %} **{{switch}}**{% if option['arg'] %} '{{option['arg']}}'{% endif %}{% if not loop.last %}, {% endif %}{% endfor %} {{ (option['desc']) }} {% endfor %}