fixup jinja indentation

This commit is contained in:
Edward Hope-Morley 2015-10-01 09:45:55 +01:00
parent 7e521f9c25
commit bf9f398bf4
1 changed files with 6 additions and 6 deletions

View File

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