diff options
author | Rafael H. Schloming <rhs@apache.org> | 2010-02-15 06:49:30 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2010-02-15 06:49:30 +0000 |
commit | d6be0fa66f6fca86a741b49c9ac3717a072a96d0 (patch) | |
tree | 6da856485eccc3c76ad804b836c7af580409d39b /python/qpid/client.py | |
parent | 75b9098e465a9da8764514410c93f79beb1d3be0 (diff) | |
download | qpid-python-d6be0fa66f6fca86a741b49c9ac3717a072a96d0.tar.gz |
more futzing with setup.py; pulled specs into python/qpid package
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@910165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/client.py')
-rw-r--r-- | python/qpid/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/client.py b/python/qpid/client.py index 6107a4bc35..45ce8498e8 100644 --- a/python/qpid/client.py +++ b/python/qpid/client.py @@ -26,7 +26,7 @@ import os, threading from peer import Peer, Channel, Closed from delegate import Delegate from connection08 import Connection, Frame, connect -from spec import load +from spec08 import load from queue import Queue from reference import ReferenceId, References @@ -39,7 +39,7 @@ class Client: if spec: self.spec = spec else: - from qpid_config import amqp_spec_0_9 + from specs_config import amqp_spec_0_9 self.spec = load(amqp_spec_0_9) self.structs = StructFactory(self.spec) self.sessions = {} |