Fixes a typo in the address string syntax

Closes-Bug: #1211338
Change-Id: I49ffc4f70cfa54a03c47537c16c35646d38f84c6
This commit is contained in:
Kenneth Giusti 2013-09-16 15:14:39 -04:00 committed by Ben Nemec
parent b6d8087746
commit 86f2e74e13
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ class DirectPublisher(Publisher):
def __init__(self, conf, session, msg_id):
"""Init a 'direct' publisher."""
super(DirectPublisher, self).__init__(session, msg_id,
{"type": "Direct"})
{"type": "direct"})
class TopicPublisher(Publisher):