Fix typo in example

This commit is contained in:
Pavlo Kapyshin 2016-08-01 23:45:21 +03:00
parent fcb7ca06c8
commit c0746dafc0
1 changed files with 1 additions and 1 deletions

View File

@ -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)