Merge pull request #12230 from mgedmin/py3k
Python 3: avoid iteritems() in a template
This commit is contained in:
commit
7f0cd14e0f
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ galaxy_info:
|
||||||
# platform on this list, let us know and we'll get it added!
|
# platform on this list, let us know and we'll get it added!
|
||||||
#
|
#
|
||||||
#platforms:
|
#platforms:
|
||||||
{%- for platform,versions in platforms.iteritems() %}
|
{%- for platform,versions in platforms.items() %}
|
||||||
#- name: {{ platform }}
|
#- name: {{ platform }}
|
||||||
# versions:
|
# versions:
|
||||||
# - all
|
# - all
|
||||||
|
|
Loading…
Reference in a new issue