summary refs log tree commit diff stats
path: root/scripts/qapi/error.py
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-04-21 15:22:27 -0400
committerMarkus Armbruster <armbru@redhat.com>2021-04-30 12:59:54 +0200
commitb54e07cc46064e79de275c7ea26d90a51913a9ea (patch)
treeec04ee5ae491bfe47ca8f9ca449a210cae1874cc /scripts/qapi/error.py
parent46f49468c690ff015a5b5346a279845f5e55369e (diff)
downloadfocaccia-qemu-b54e07cc46064e79de275c7ea26d90a51913a9ea.tar.gz
focaccia-qemu-b54e07cc46064e79de275c7ea26d90a51913a9ea.zip
qapi/error: Use Python3-style super()
Missed in commit 2cae67bcb5 "qapi: Use super() now we have Python 3".

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210421192233.3542904-3-jsnow@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts/qapi/error.py')
-rw-r--r--scripts/qapi/error.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qapi/error.py b/scripts/qapi/error.py
index 126dda7c9b..38bd7c4dd6 100644
--- a/scripts/qapi/error.py
+++ b/scripts/qapi/error.py
@@ -19,7 +19,7 @@ class QAPIError(Exception):
 class QAPISourceError(QAPIError):
     """Error class for all exceptions identifying a source location."""
     def __init__(self, info, col, msg):
-        Exception.__init__(self)
+        super().__init__()
         self.info = info
         self.col = col
         self.msg = msg