Commit 38a96d7e by Marius Gedminas

Python 3: avoid iteritems() in a template

I don't think six.iteritems is available here, but I also don't expect
there to be enough platforms to ever make the speed difference between
.items() and .iteritems() noticeable.
parent 364313c0
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment