summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@gmail.com>2020-08-28 12:01:28 +0200
committerMatus Valo <matusvalo@gmail.com>2020-08-28 12:01:28 +0200
commit2becce3e03df5790391cc97c47e10fc5e39656b3 (patch)
treebaca2f6151321a137472276ce18f3acb009b780f
parent8e29a7e9b19255e357417359d586d9eb209d180b (diff)
downloadkombu-2becce3e03df5790391cc97c47e10fc5e39656b3.tar.gz
Indent code block in documentation
-rw-r--r--docs/userguide/consumers.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/consumers.rst b/docs/userguide/consumers.rst
index fca4c0ce..c2e9d03e 100644
--- a/docs/userguide/consumers.rst
+++ b/docs/userguide/consumers.rst
@@ -49,8 +49,8 @@ acknowledge is set.
.. code-block:: python
>>> def callback(body, message):
- ... print(body)
- ... message.ack()
+ ... print(body)
+ ... message.ack()
>>> consumer.register_callback(callback)