diff options
Diffstat (limited to 'python/hello-world')
| -rwxr-xr-x | python/hello-world | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/hello-world b/python/hello-world index fd712d324b..8b7a2752c5 100755 --- a/python/hello-world +++ b/python/hello-world @@ -3,7 +3,8 @@ import qpid from qpid.client import Client from qpid.content import Content -client = Client("127.0.0.1", 5672, qpid.spec.load("../specs/amqp.0-9.xml")) +client = Client("127.0.0.1", 5672, qpid.spec.load("../specs/amqp.0-9.xml", + "../specs/amqp-errata.0-9.xml")) client.start({"LOGIN": "guest", "PASSWORD": "guest"}) ch = client.channel(1) ch.channel_open() |
