fixup jinja indentation
This commit is contained in:
parent
8e85469516
commit
ed1b4950f6
@ -1,18 +1,18 @@
|
||||
{% if sections and 'DEFAULT' in sections -%}
|
||||
{% for key, value in sections['DEFAULT'] -%}
|
||||
{{ key }} = {{ value }}
|
||||
{% endfor -%}
|
||||
{% endif -%}
|
||||
{% endfor %}
|
||||
{%- endif %}
|
||||
|
||||
{% if backends -%}
|
||||
enabled_backends = {{ backends }}
|
||||
{% endif -%}
|
||||
{%- endif %}
|
||||
|
||||
{% for section in sections -%}
|
||||
{% if section != 'DEFAULT' -%}
|
||||
[{{ section }}]
|
||||
{% for key, value in sections[section] -%}
|
||||
{{ key }} = {{ value }}
|
||||
{% endfor -%}
|
||||
{% endif -%}
|
||||
{% endfor -%}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{%- endfor %}
|
Loading…
Reference in New Issue
Block a user