summaryrefslogtreecommitdiff
path: root/t/unit
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2022-01-30 13:34:54 +0100
committerGitHub <noreply@github.com>2022-01-30 18:34:54 +0600
commit31a84d5b3d871fc59c38281127cd178b7ddd150e (patch)
tree60295a6589f93f565c5050a92942d8a9d0da3a84 /t/unit
parent3ec6dc0fd1e9af32bddd058dda105d97804cdbdd (diff)
downloadkombu-31a84d5b3d871fc59c38281127cd178b7ddd150e.tar.gz
Some small updates (#1486)
* Some small updates * Update QpidException super-call to Python 3 syntax.
Diffstat (limited to 't/unit')
-rw-r--r--t/unit/transport/test_qpid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/unit/transport/test_qpid.py b/t/unit/transport/test_qpid.py
index 351a929b..d3866364 100644
--- a/t/unit/transport/test_qpid.py
+++ b/t/unit/transport/test_qpid.py
@@ -33,7 +33,7 @@ class QpidException(Exception):
"""
def __init__(self, code=None, text=None):
- super(Exception, self).__init__(self)
+ super().__init__(self)
self.code = code
self.text = text