summaryrefslogtreecommitdiff
path: root/qpid/cpp/bindings/qmf2/examples/python/agent.py
diff options
context:
space:
mode:
authorDarryl L. Pierce <mcpierce@apache.org>2013-10-15 13:10:38 +0000
committerDarryl L. Pierce <mcpierce@apache.org>2013-10-15 13:10:38 +0000
commit02b136e430d0b8ccfb183d60465c640d99bc8fa9 (patch)
tree3c24514e08bd9ea4bc31116f4ea89a12e28ffadb /qpid/cpp/bindings/qmf2/examples/python/agent.py
parent6aa3b0121912f455370c9824f6bd3dc24a78318e (diff)
downloadqpid-python-02b136e430d0b8ccfb183d60465c640d99bc8fa9.tar.gz
Revert "QPID-5213: Fix QMF code to use qpid_messaging rather than cqpid."
This reverts commit 067e9aa1656b9f92e5910bbb6d530f9df6d0dad3. It had the wrong JIRA number in the commit. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1532323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bindings/qmf2/examples/python/agent.py')
-rwxr-xr-xqpid/cpp/bindings/qmf2/examples/python/agent.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/bindings/qmf2/examples/python/agent.py b/qpid/cpp/bindings/qmf2/examples/python/agent.py
index a9f1a14349..b24890f531 100755
--- a/qpid/cpp/bindings/qmf2/examples/python/agent.py
+++ b/qpid/cpp/bindings/qmf2/examples/python/agent.py
@@ -19,7 +19,7 @@
# under the License.
#
-import qpid_messaging
+import cqpid
from qmf2 import *
@@ -34,7 +34,7 @@ class ExampleAgent(AgentHandler):
##
## Create and open a messaging connection to a broker.
##
- self.connection = qpid_messaging.Connection(url, "{reconnect:True}")
+ self.connection = cqpid.Connection(url, "{reconnect:True}")
self.session = None
self.connection.open()