mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-14 21:52:18 -06:00
python: rename QEMUMonitorProtocol.cmd() to cmd_raw()
Having cmd() and command() methods in one class doesn't look good. Rename cmd() to cmd_raw(), to show its meaning better. We also want to rename command() to cmd() in future, so this commit is a necessary step. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20231006154125.1068348-5-vsementsov@yandex-team.ru Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
7f521b023b
commit
37274707f6
3 changed files with 4 additions and 4 deletions
|
@ -702,7 +702,7 @@ class QEMUMachine:
|
|||
conv_keys = True
|
||||
|
||||
qmp_args = self._qmp_args(conv_keys, args)
|
||||
ret = self._qmp.cmd(cmd, args=qmp_args)
|
||||
ret = self._qmp.cmd_raw(cmd, args=qmp_args)
|
||||
if cmd == 'quit' and 'error' not in ret and 'return' in ret:
|
||||
self._quit_issued = True
|
||||
return ret
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue