aboutsummaryrefslogtreecommitdiff
path: root/scripts/qmp
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-06-07 16:06:45 -0400
committerJohn Snow <jsnow@redhat.com>2021-06-18 16:10:07 -0400
commit6a1105adba41c3cd6371437b46c045ae9ea85314 (patch)
tree00bc6b0c26812753c80bb93c8abff6d8ab7b925a /scripts/qmp
parenta64fe44d5abfd4aa933b17a8cf21d3c0b9df6143 (diff)
downloadqemu-6a1105adba41c3cd6371437b46c045ae9ea85314.zip
qemu-6a1105adba41c3cd6371437b46c045ae9ea85314.tar.gz
qemu-6a1105adba41c3cd6371437b46c045ae9ea85314.tar.bz2
scripts/qmp-shell: make QMPShellError inherit QMPError
In preparation for moving qmp-shell into the qemu.qmp package, make QMPShellError inherit from QMPError so that all custom errors in this package all derive from QMPError. Signed-off-by: John Snow <jsnow@redhat.com> Message-id: 20210607200649.1840382-39-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'scripts/qmp')
-rwxr-xr-xscripts/qmp/qmp-shell2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qmp/qmp-shell b/scripts/qmp/qmp-shell
index 40ff9e0..1a8a4ba 100755
--- a/scripts/qmp/qmp-shell
+++ b/scripts/qmp/qmp-shell
@@ -123,7 +123,7 @@ class QMPCompleter:
return None
-class QMPShellError(Exception):
+class QMPShellError(qmp.QMPError):
pass