replace iteritems with items

This commit is contained in:
Niels Abspoel 2018-03-07 21:17:57 +01:00
parent 16f73256b2
commit f30071afd2
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
{%- endmacro %}
{%- if data is mapping %}
{% for key, value in data.iteritems() %}
{% for key, value in data.items() %}
{{ format_value(key, value) }}
{%- endfor -%}
{%- else %}