From e1442d1150b3dd8010f03661e95f9c0315cd8dc9 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 2 Jul 2012 12:21:21 -0400 Subject: 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 --- openstack/common/rpc/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstack/common') 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__) -- cgit