From: John Snow Date: Wed, 21 Apr 2021 19:22:27 +0000 (-0400) Subject: qapi/error: Use Python3-style super() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b54e07cc46064e79de275c7ea26d90a51913a9ea;p=qemu.git qapi/error: Use Python3-style super() Missed in commit 2cae67bcb5 "qapi: Use super() now we have Python 3". Signed-off-by: John Snow Reviewed-by: Markus Armbruster Message-Id: <20210421192233.3542904-3-jsnow@redhat.com> Signed-off-by: Markus Armbruster --- 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