Merge pull request #615 from PavloKapyshin/master

Fix typo in example
This commit is contained in:
Dmitry Malinovsky 2016-08-02 08:41:02 +06:00 committed by GitHub
commit e1f552876f
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)