diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-01-28 12:42:41 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-01-28 12:42:41 +0000 |
| commit | b5288ab022d3733abae25971ca8afb56f1a7011b (patch) | |
| tree | f90af320d66c8349ce4d1bfb8754b0df4b4f9371 /openstack/common/rpc | |
| parent | d6ed770a726590d8072c573ece68ee845f69e513 (diff) | |
| parent | e3e5e0ebce00e73ad5d206205fded6a5dc1317ae (diff) | |
| download | oslo-b5288ab022d3733abae25971ca8afb56f1a7011b.tar.gz oslo-b5288ab022d3733abae25971ca8afb56f1a7011b.tar.xz oslo-b5288ab022d3733abae25971ca8afb56f1a7011b.zip | |
Merge "Fixes "is not", "not in" syntax usage."
Diffstat (limited to 'openstack/common/rpc')
| -rw-r--r-- | openstack/common/rpc/impl_zmq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/impl_zmq.py b/openstack/common/rpc/impl_zmq.py index ee313eb..86d2bc5 100644 --- a/openstack/common/rpc/impl_zmq.py +++ b/openstack/common/rpc/impl_zmq.py @@ -449,7 +449,7 @@ class ZmqProxy(ZmqBaseReactor): else: sock_type = zmq.PUSH - if not topic in self.topic_proxy: + if topic not in self.topic_proxy: def publisher(waiter): LOG.info(_("Creating proxy for topic: %s"), topic) |
