replace iteritems with items
This commit is contained in:
parent
16f73256b2
commit
f30071afd2
@ -15,7 +15,7 @@
|
|||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
|
||||||
{%- if data is mapping %}
|
{%- if data is mapping %}
|
||||||
{% for key, value in data.iteritems() %}
|
{% for key, value in data.items() %}
|
||||||
{{ format_value(key, value) }}
|
{{ format_value(key, value) }}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
|
Loading…
Reference in New Issue
Block a user