Merge pull request #50 from heckj/master

fixes for docs
This commit is contained in:
Ask Solem Hoel 2011-07-19 07:45:44 -07:00
commit 7c30466293
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ Quick overview
from kombu.messaging import Exchange, Queue, Consumer, Producer
media_exchange = Exchange("media", "direct", durable=True)
video_queue = Queue("video", exchange=media_exchange, key="video")
video_queue = Queue("video", exchange=media_exchange, routing_key="video")
# connections/channels
connection = BrokerConnection("localhost", "guest", "guest", "/")