diff options
| author | Joe Gordon <jogo@cloudscaling.com> | 2012-06-22 17:58:30 -0700 |
|---|---|---|
| committer | Joe Gordon <jogo@cloudscaling.com> | 2012-06-22 17:58:30 -0700 |
| commit | 5685d20341502ddbb0265ebbaa6336f69aebc6fe (patch) | |
| tree | 143fe263b7474dfd531b8e40574357ec5989dfb9 | |
| parent | 3252371afca71f57c171569676d5de70439d5384 (diff) | |
| download | nova-5685d20341502ddbb0265ebbaa6336f69aebc6fe.tar.gz nova-5685d20341502ddbb0265ebbaa6336f69aebc6fe.tar.xz nova-5685d20341502ddbb0265ebbaa6336f69aebc6fe.zip | |
Fix import order of openstack.common
Change-Id: Id80026ad9eb78c6d9a6bcae33e26ac8a4fdd6680
| -rwxr-xr-x | bin/nova-novncproxy | 2 | ||||
| -rw-r--r-- | nova/tests/compute/test_compute.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/nova-novncproxy b/bin/nova-novncproxy index 228db0d2f..30a13612e 100755 --- a/bin/nova-novncproxy +++ b/bin/nova-novncproxy @@ -31,9 +31,9 @@ import websockify from nova import context from nova import flags from nova import log as logging +from nova.openstack.common import cfg from nova import rpc from nova import utils -from nova.openstack.common import cfg opts = [ diff --git a/nova/tests/compute/test_compute.py b/nova/tests/compute/test_compute.py index 0a90a754c..439f3bd49 100644 --- a/nova/tests/compute/test_compute.py +++ b/nova/tests/compute/test_compute.py @@ -44,9 +44,9 @@ from nova import log as logging from nova.notifier import test_notifier from nova.openstack.common import importutils from nova.openstack.common import policy as common_policy -from nova.openstack.common import timeutils from nova.openstack.common import rpc from nova.openstack.common.rpc import common as rpc_common +from nova.openstack.common import timeutils import nova.policy from nova import quota from nova.scheduler import driver as scheduler_driver |
