summaryrefslogtreecommitdiff
path: root/docs
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 /docs
parent3ec6dc0fd1e9af32bddd058dda105d97804cdbdd (diff)
downloadkombu-31a84d5b3d871fc59c38281127cd178b7ddd150e.tar.gz
Some small updates (#1486)
* Some small updates * Update QpidException super-call to Python 3 syntax.
Diffstat (limited to 'docs')
-rw-r--r--docs/userguide/simple.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/simple.rst b/docs/userguide/simple.rst
index 8d86711c..41daae52 100644
--- a/docs/userguide/simple.rst
+++ b/docs/userguide/simple.rst
@@ -61,7 +61,7 @@ to produce and consume logging messages:
from kombu import Connection
- class Logger(object):
+ class Logger:
def __init__(self, connection, queue_name='log_queue',
serializer='json', compression=None):