summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRedowan Delowar <redowan.nafi@gmail.com>2021-01-15 07:29:04 +0600
committerAsif Saif Uddin <auvipy@gmail.com>2021-01-15 09:02:49 +0600
commit1294530530b41deebb614a00c4a955338d78ecb4 (patch)
tree0da5b7945eca5ac3bfd664d0bc05d9835a72e9a3 /docs
parent90c6ac706e30b4082885b3ce22c56fa24996b645 (diff)
downloadkombu-1294530530b41deebb614a00c4a955338d78ecb4.tar.gz
Python 3 style print statement
Diffstat (limited to 'docs')
-rw-r--r--docs/includes/introduction.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt
index 77fd34d0..ad05faa2 100644
--- a/docs/includes/introduction.txt
+++ b/docs/includes/introduction.txt
@@ -132,7 +132,7 @@ Quick overview
video_queue = Queue('video', exchange=media_exchange, routing_key='video')
def process_media(body, message):
- print body
+ print(body)
message.ack()
# connections