From fb2e1cc6c45fd69082a4793a662778c7a747c452 Mon Sep 17 00:00:00 2001 From: Eduardo Habkost Date: Mon, 12 Mar 2018 15:55:01 -0300 Subject: qemu.py: Use items() instead of iteritems() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit items() is less efficient on Python 2.x, but makes the code work on both Python 2 and Python 3. Cc: Lukáš Doktor Cc: Philippe Mathieu-Daudé Cc: Cleber Rosa Signed-off-by: Eduardo Habkost Message-Id: <20180312185503.5746-2-ehabkost@redhat.com> Reviewed-by: Daniel P. Berrangé Signed-off-by: Eduardo Habkost --- scripts/qemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/qemu.py b/scripts/qemu.py index 305a946..08a3e9a 100644 --- a/scripts/qemu.py +++ b/scripts/qemu.py @@ -277,7 +277,7 @@ class QEMUMachine(object): def qmp(self, cmd, conv_keys=True, **args): '''Invoke a QMP command and return the response dict''' qmp_args = dict() - for key, value in args.iteritems(): + for key, value in args.items(): if conv_keys: qmp_args[key.replace('_', '-')] = value else: -- cgit v1.1