summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorZhongyue Luo <zhongyue.nah@intel.com>2012-10-29 14:19:19 +0800
committerZhongyue Luo <zhongyue.nah@intel.com>2012-10-29 14:19:19 +0800
commitb153b563908e91ce1bbce0ab9f019d3fba0b2162 (patch)
tree380c935a12e51e365aa02c5d9a2f17a8c4dfb3e2 /openstack
parentaca1805d911caefe14a73edb6ced281cf54e7ad2 (diff)
downloadoslo-b153b563908e91ce1bbce0ab9f019d3fba0b2162.tar.gz
oslo-b153b563908e91ce1bbce0ab9f019d3fba0b2162.tar.xz
oslo-b153b563908e91ce1bbce0ab9f019d3fba0b2162.zip
Import order clean-up
Reorder imports by full module path Change-Id: If619b4b50aa052401f7fa65df57b74d4ad1b65a6
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/extensions.py4
-rw-r--r--openstack/common/loopingcall.py2
-rw-r--r--openstack/common/periodic_task.py2
-rw-r--r--openstack/common/rpc/impl_kombu.py2
-rw-r--r--openstack/common/service.py2
-rw-r--r--openstack/common/threadgroup.py4
-rw-r--r--openstack/common/utils.py2
-rw-r--r--openstack/common/wsgi.py2
8 files changed, 10 insertions, 10 deletions
diff --git a/openstack/common/extensions.py b/openstack/common/extensions.py
index 742c4f2..906906d 100644
--- a/openstack/common/extensions.py
+++ b/openstack/common/extensions.py
@@ -17,12 +17,12 @@
# under the License.
import imp
+import logging
+from lxml import etree
import os
import routes
import webob.dec
import webob.exc
-import logging
-from lxml import etree
from openstack.common import exception
from openstack.common.gettextutils import _
diff --git a/openstack/common/loopingcall.py b/openstack/common/loopingcall.py
index ede3dae..36a533c 100644
--- a/openstack/common/loopingcall.py
+++ b/openstack/common/loopingcall.py
@@ -22,8 +22,8 @@ import sys
from eventlet import event
from eventlet import greenthread
-from openstack.common import log as logging
from openstack.common.gettextutils import _
+from openstack.common import log as logging
LOG = logging.getLogger(__name__)
diff --git a/openstack/common/periodic_task.py b/openstack/common/periodic_task.py
index 5cf2ade..edfee9b 100644
--- a/openstack/common/periodic_task.py
+++ b/openstack/common/periodic_task.py
@@ -13,8 +13,8 @@
# License for the specific language governing permissions and limitations
# under the License.
-from openstack.common import log as logging
from openstack.common.gettextutils import _
+from openstack.common import log as logging
LOG = logging.getLogger(__name__)
diff --git a/openstack/common/rpc/impl_kombu.py b/openstack/common/rpc/impl_kombu.py
index fc34de1..e9118d6 100644
--- a/openstack/common/rpc/impl_kombu.py
+++ b/openstack/common/rpc/impl_kombu.py
@@ -31,9 +31,9 @@ import kombu.messaging
from openstack.common import cfg
from openstack.common.gettextutils import _
+from openstack.common import network_utils
from openstack.common.rpc import amqp as rpc_amqp
from openstack.common.rpc import common as rpc_common
-from openstack.common import network_utils
kombu_opts = [
cfg.StrOpt('kombu_ssl_version',
diff --git a/openstack/common/service.py b/openstack/common/service.py
index 5630035..05060ca 100644
--- a/openstack/common/service.py
+++ b/openstack/common/service.py
@@ -32,9 +32,9 @@ import logging as std_logging
from openstack.common import cfg
from openstack.common import eventlet_backdoor
+from openstack.common.gettextutils import _
from openstack.common import log as logging
from openstack.common import threadgroup
-from openstack.common.gettextutils import _
try:
from openstack.common import rpc
diff --git a/openstack/common/threadgroup.py b/openstack/common/threadgroup.py
index a9dfa5e..ebc066a 100644
--- a/openstack/common/threadgroup.py
+++ b/openstack/common/threadgroup.py
@@ -17,12 +17,12 @@ import os
import sys
from eventlet import event
-from eventlet import greenthread
from eventlet import greenpool
+from eventlet import greenthread
-from openstack.common import loopingcall
from openstack.common.gettextutils import _
from openstack.common import log as logging
+from openstack.common import loopingcall
LOG = logging.getLogger(__name__)
diff --git a/openstack/common/utils.py b/openstack/common/utils.py
index 74c571d..220b49e 100644
--- a/openstack/common/utils.py
+++ b/openstack/common/utils.py
@@ -23,8 +23,8 @@ import logging
import random
import shlex
-from eventlet import greenthread
from eventlet.green import subprocess
+from eventlet import greenthread
from openstack.common import exception
from openstack.common.gettextutils import _
diff --git a/openstack/common/wsgi.py b/openstack/common/wsgi.py
index 52133a8..614a22c 100644
--- a/openstack/common/wsgi.py
+++ b/openstack/common/wsgi.py
@@ -33,8 +33,8 @@ from xml.parsers import expat
from openstack.common import exception
from openstack.common.gettextutils import _
-from openstack.common import log as logging
from openstack.common import jsonutils
+from openstack.common import log as logging
from openstack.common import service