summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-07-02 12:21:21 -0400
committerRussell Bryant <rbryant@redhat.com>2012-07-02 12:21:21 -0400
commite1442d1150b3dd8010f03661e95f9c0315cd8dc9 (patch)
treea27be8e2d40b1d11a2bc6797f11a55e0382c66c3 /openstack
parent619ed56093d2cfdc0b926cd4907156f5e58dc6d2 (diff)
downloadoslo-e1442d1150b3dd8010f03661e95f9c0315cd8dc9.tar.gz
oslo-e1442d1150b3dd8010f03661e95f9c0315cd8dc9.tar.xz
oslo-e1442d1150b3dd8010f03661e95f9c0315cd8dc9.zip
Fix import order.
Fix import order in rpc.common. They must be alphabetical. Nova tests for this and caught it when i synced in the latest changes. Change-Id: I0dbd6b5004d754d0bd2d1861905db3405c64e3d4
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/rpc/common.py2
1 files changed, 1 insertions, 1 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__)