From: Thomas Huth Date: Mon, 11 Jul 2022 09:57:21 +0000 (+0200) Subject: python/qemu/qmp/legacy: Replace 'returns-whitelist' with the correct type X-Git-Tag: qemu-xen-4.18.0-rc5~609^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9b0ecfaba5920ddf8601d7b31746a428aa3779c6;p=qemu-xen.git python/qemu/qmp/legacy: Replace 'returns-whitelist' with the correct type 'returns-whitelist' has been renamed to 'command-returns-exceptions' in commit b86df3747848 ("qapi: Rename pragma *-whitelist to *-exceptions"). Message-Id: <20220711095721.61280-1-thuth@redhat.com> Reviewed-by: John Snow Signed-off-by: Thomas Huth --- diff --git a/python/qemu/qmp/legacy.py b/python/qemu/qmp/legacy.py index 03b5574618..1951754455 100644 --- a/python/qemu/qmp/legacy.py +++ b/python/qemu/qmp/legacy.py @@ -50,7 +50,7 @@ QMPObject = Dict[str, object] # QMPMessage can be outgoing commands or incoming events/returns. # QMPReturnValue is usually a dict/json object, but due to QAPI's -# 'returns-whitelist', it can actually be anything. +# 'command-returns-exceptions', it can actually be anything. # # {'return': {}} is a QMPMessage, # {} is the QMPReturnValue.