Improve Python 3 compatibility

Use dict.items() instead of dict.iteritems() for Python 3 compatibility.

Change-Id: If2484febbab4db20539749094517240b5f17d1ab
Implements: blueprint goal-python35
This commit is contained in:
Jimmy McCrory 2017-06-28 15:02:24 -07:00
parent cb4a27da79
commit 9d72a661c7

View File

@ -773,10 +773,10 @@ HORIZON_CONFIG["customization_module"] = 'horizon_customization.overrides'
{% endif %}
AVAILABLE_THEMES = [
{% for key, value in _horizon_available_themes.iteritems() %}
{% for key, value in _horizon_available_themes.items() %}
('{{ value.theme_name }}', '{{ value.theme_label }}', '{{ value.theme_path }}'),
{% endfor %}
{% for key, value in horizon_custom_themes.iteritems() %}
{% for key, value in horizon_custom_themes.items() %}
('{{ value.theme_name }}', '{{ value.theme_label }}', '{{ value.theme_path }}'),
{% endfor %}
]