From be1e942730f2a9d383c66beab12c31504d61d7cf Mon Sep 17 00:00:00 2001 From: Andrew Bogott Date: Sun, 8 Jul 2012 06:15:48 -0500 Subject: Minor pep8 cleanup in rpc. Removed a space, reordered an import. Change-Id: I418d1f7c6a5a3b8ef231c88b4ef28114ca0eb7cd --- openstack/common/rpc/common.py | 2 +- openstack/common/rpc/impl_zmq.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'openstack') diff --git a/openstack/common/rpc/common.py b/openstack/common/rpc/common.py index 1f421f3..2e15c3e 100644 --- a/openstack/common/rpc/common.py +++ b/openstack/common/rpc/common.py @@ -23,10 +23,10 @@ import sys import traceback from openstack.common import cfg +from openstack.common.gettextutils import _ from openstack.common import importutils from openstack.common import jsonutils from openstack.common import local -from openstack.common.gettextutils import _ LOG = logging.getLogger(__name__) diff --git a/openstack/common/rpc/impl_zmq.py b/openstack/common/rpc/impl_zmq.py index 77723ca..0f98e3d 100644 --- a/openstack/common/rpc/impl_zmq.py +++ b/openstack/common/rpc/impl_zmq.py @@ -127,7 +127,7 @@ class ZmqSocket(object): 'subscribe': subscribe, 'bind': bind} LOG.debug(_("Connecting to %(addr)s with %(type)s"), str_data) - LOG.debug(_("-> Subscribed to %(subscribe)s"), str_data) + LOG.debug(_("-> Subscribed to %(subscribe)s"), str_data) LOG.debug(_("-> bind: %(bind)s"), str_data) try: -- cgit