py3: Fix use of iteritems in templates
Switch to using items for dictionary iteration. Change-Id: I5cd7e445e385dd23d5187ef251d8416bdd3db7d4 Closes-Bug: 1735797
This commit is contained in:
parent
8ebe32897b
commit
eefb27a582
@ -2,7 +2,7 @@
|
|||||||
dhcp-option=26,{{ instance_mtu }}
|
dhcp-option=26,{{ instance_mtu }}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% if dnsmasq_flags -%}
|
{% if dnsmasq_flags -%}
|
||||||
{% for key, value in dnsmasq_flags.iteritems() -%}
|
{% for key, value in dnsmasq_flags.items() -%}
|
||||||
{{ key }} = {{ value }}
|
{{ key }} = {{ value }}
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user