summaryrefslogtreecommitdiff
path: root/qpid
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2010-06-28 19:44:41 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2010-06-28 19:44:41 +0000
commita46012bd23c96b4d40e69eb18fa108669ecc0c32 (patch)
treeb97846cc1310b645cbe886dddf5d00a998cddbb9 /qpid
parent47292282df67b7ad47580b7b54f6da8559bda92c (diff)
downloadqpid-python-a46012bd23c96b4d40e69eb18fa108669ecc0c32.tar.gz
QPID-2663: fix parameter name misspelling [found by tross]
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@958691 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
-rw-r--r--qpid/extras/qmf/src/py/qmf/console.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/extras/qmf/src/py/qmf/console.py b/qpid/extras/qmf/src/py/qmf/console.py
index 062cb6f341..57e992418b 100644
--- a/qpid/extras/qmf/src/py/qmf/console.py
+++ b/qpid/extras/qmf/src/py/qmf/console.py
@@ -675,7 +675,7 @@ class Session:
broker.amqpSession.exchange_bind(exchange="qpid.management", queue=broker.topicName, binding_key=v1key)
if broker.brokerSupportsV2:
# data indications should arrive on the lo priority queue
- broker.amqpSession.exchange_bind(exchange="qmf.default.topic", queue=broker.v2_topic_queue_lo, bindingkey=v2key)
+ broker.amqpSession.exchange_bind(exchange="qmf.default.topic", queue=broker.v2_topic_queue_lo, binding_key=v2key)
def bindClass(self, pname, cname):
@@ -691,7 +691,7 @@ class Session:
broker.amqpSession.exchange_bind(exchange="qpid.management", queue=broker.topicName, binding_key=v1key)
if broker.brokerSupportsV2:
# data indications should arrive on the lo priority queue
- broker.amqpSession.exchange_bind(exchange="qmf.default.topic", queue=broker.v2_topic_queue_lo, bindingkey=v2key)
+ broker.amqpSession.exchange_bind(exchange="qmf.default.topic", queue=broker.v2_topic_queue_lo, binding_key=v2key)
def bindClassKey(self, classKey):