Merge pull request #64 from aboe76/python3_support

replace iteritems with items
This commit is contained in:
Javier Bértoli 2018-03-07 19:38:59 -03:00 committed by GitHub
commit b40258211e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 %}