diff options
author | Rafael H. Schloming <rhs@apache.org> | 2007-05-30 22:09:47 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2007-05-30 22:09:47 +0000 |
commit | bee2ac89c72ee96396e8fb3756fab5002a2c5d96 (patch) | |
tree | d50d26b4aaf3aa3adb178c1715066e4b10bf38dc | |
parent | 2182d9220f137f34677853f561876c642a7ce244 (diff) | |
download | qpid-python-bee2ac89c72ee96396e8fb3756fab5002a2c5d96.tar.gz |
example mods
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@542954 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | qpid/python/server | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/server b/qpid/python/server index 4204bc8515..56f0f32081 100755 --- a/qpid/python/server +++ b/qpid/python/server @@ -1,5 +1,5 @@ #!/usr/bin/env python -from qpid import spec +import qpid from qpid.connection import Connection, listen from qpid.delegate import Delegate from qpid.peer import Peer @@ -18,7 +18,7 @@ class Server(Delegate): msg.ok() -spec = spec.load("../specs/amqp.0-9.xml") +spec = qpid.spec.load("../specs/amqp.0-9.xml") for io in listen("0.0.0.0", 5672): c = Connection(io, spec) |