Fix py3 dict issue in N template

Change-Id: Ib2a9161874a3cdf1beada94753d217a0f7b7938b
This commit is contained in:
Ryan Beisner 2018-10-29 09:05:22 -05:00 committed by Alex Kavanagh (tinwood)
parent eaac5c31e2
commit 876d3c7ecb
1 changed files with 2 additions and 2 deletions

View File

@ -111,13 +111,13 @@ volume_api_class=nova.volume.cinder.API
{% endif -%}
{% if user_config_flags -%}
{% for key, value in user_config_flags.iteritems() -%}
{% for key, value in user_config_flags.items() -%}
{{ key }} = {{ value }}
{% endfor -%}
{% endif -%}
{% if listen_ports -%}
{% for key, value in listen_ports.iteritems() -%}
{% for key, value in listen_ports.items() -%}
{{ key }} = {{ value }}
{% endfor -%}
{% endif -%}