From 1294530530b41deebb614a00c4a955338d78ecb4 Mon Sep 17 00:00:00 2001 From: Redowan Delowar Date: Fri, 15 Jan 2021 07:29:04 +0600 Subject: [PATCH] Python 3 style print statement --- docs/includes/introduction.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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