From 9d72a661c7bb4f9f6d6a27d76f3fbc1e738dd128 Mon Sep 17 00:00:00 2001 From: Jimmy McCrory Date: Wed, 28 Jun 2017 15:02:24 -0700 Subject: [PATCH] Improve Python 3 compatibility Use dict.items() instead of dict.iteritems() for Python 3 compatibility. Change-Id: If2484febbab4db20539749094517240b5f17d1ab Implements: blueprint goal-python35 --- templates/horizon_local_settings.py.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/horizon_local_settings.py.j2 b/templates/horizon_local_settings.py.j2 index b123e6b3..ec597f69 100644 --- a/templates/horizon_local_settings.py.j2 +++ b/templates/horizon_local_settings.py.j2 @@ -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 %} ]