aboutsummaryrefslogtreecommitdiff
path: root/python/qemu/utils/qom_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/qemu/utils/qom_common.py')
-rw-r--r--python/qemu/utils/qom_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qemu/utils/qom_common.py b/python/qemu/utils/qom_common.py
index 80da1b2..dd2c8b1 100644
--- a/python/qemu/utils/qom_common.py
+++ b/python/qemu/utils/qom_common.py
@@ -140,7 +140,7 @@ class QOMCommand:
"""
:return: a strongly typed list from the 'qom-list' command.
"""
- rsp = self.qmp.command('qom-list', path=path)
+ rsp = self.qmp.cmd('qom-list', path=path)
# qom-list returns List[ObjectPropertyInfo]
assert isinstance(rsp, list)
return [ObjectPropertyInfo.make(x) for x in rsp]