summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorAndrew Bogott <abogott@wikimedia.org>2012-07-08 06:15:48 -0500
committerAndrew Bogott <abogott@wikimedia.org>2012-07-08 06:16:23 -0500
commitbe1e942730f2a9d383c66beab12c31504d61d7cf (patch)
treea2fc3969c1319be1d52b1be7055154bf1e295619 /openstack
parent289a0b328b96693944faf69b43124d4449cdbded (diff)
downloadoslo-be1e942730f2a9d383c66beab12c31504d61d7cf.tar.gz
oslo-be1e942730f2a9d383c66beab12c31504d61d7cf.tar.xz
oslo-be1e942730f2a9d383c66beab12c31504d61d7cf.zip
Minor pep8 cleanup in rpc.
Removed a space, reordered an import. Change-Id: I418d1f7c6a5a3b8ef231c88b4ef28114ca0eb7cd
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/rpc/common.py2
-rw-r--r--openstack/common/rpc/impl_zmq.py2
2 files changed, 2 insertions, 2 deletions
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: