Merge pull request #64 from aboe76/python3_support
replace iteritems with items
This commit is contained in:
commit
b40258211e
@ -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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user