From c0746dafc04210f20730431791c078b60f9a6a12 Mon Sep 17 00:00:00 2001 From: Pavlo Kapyshin Date: Mon, 1 Aug 2016 23:45:21 +0300 Subject: [PATCH] Fix typo in example --- examples/complete_send.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/complete_send.py b/examples/complete_send.py index 08651b91..6c33a820 100644 --- a/examples/complete_send.py +++ b/examples/complete_send.py @@ -18,7 +18,7 @@ queue = Queue('kombu_demo', exchange, routing_key='kombu_demo') with Connection('amqp://guest:guest@localhost:5672//') as connection: #: Producers are used to publish messages. - #: a default exchange and routing key can also be specifed + #: a default exchange and routing key can also be specified #: as arguments the Producer, but we rather specify this explicitly #: at the publish call. producer = Producer(connection)