Skip to content

Commit

Permalink
Merge pull request ansible#12230 from mgedmin/py3k
Browse files Browse the repository at this point in the history
Python 3: avoid iteritems() in a template
abadger committed Sep 3, 2015
2 parents 364313c + 38a96d7 commit 7f0cd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/galaxy/data/metadata_template.j2
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ galaxy_info:
# platform on this list, let us know and we'll get it added!
#
#platforms:
{%- for platform,versions in platforms.iteritems() %}
{%- for platform,versions in platforms.items() %}
#- name: {{ platform }}
# versions:
# - all

0 comments on commit 7f0cd14

Please sign in to comment.