From 6a1cc727bd1095265759099a2b76d9a56e51698b Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Wed, 2 Aug 2017 15:07:37 -0500 Subject: [PATCH] remove the use of iteritems iteritems is a py2 callable and will break when using py3. Change-Id: I8f1909a7537cac0cab307becfb872b2b4cf179dd Signed-off-by: Kevin Carter --- templates/qemu.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/qemu.conf.j2 b/templates/qemu.conf.j2 index fe3728fe..6e513567 100644 --- a/templates/qemu.conf.j2 +++ b/templates/qemu.conf.j2 @@ -16,7 +16,7 @@ cgroup_device_acl = [ {% endif %} {% if qemu_conf_dict is defined %} -{% for key, value in qemu_conf_dict.iteritems() %} +{% for key, value in qemu_conf_dict.items() %} {{ key }} = {{ value }} {% endfor %} {% endif %}