Skip to content

Commit

Permalink
PR #195 follow-up, fixes #224: Fix indentfirst argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Aug 27, 2021
1 parent f472547 commit f0499b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/vhosts.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</Directory>
{% endif %}
{% if vhost.extra_parameters is defined %}
{{ vhost.extra_parameters | indent(width=2, first=True, indentfirst=True) }}
{{ vhost.extra_parameters | indent(width=2, first=True) }}
{% endif %}
</VirtualHost>

Expand Down Expand Up @@ -74,7 +74,7 @@
</Directory>
{% endif %}
{% if vhost.extra_parameters is defined %}
{{ vhost.extra_parameters | indent(width=2, first=True, indentfirst=True) }}
{{ vhost.extra_parameters | indent(width=2, first=True) }}
{% endif %}
</VirtualHost>

Expand Down

0 comments on commit f0499b2

Please sign in to comment.