diff options
| author | Joe Gordon <jogo@cloudscaling.com> | 2012-05-14 14:46:11 -0700 |
|---|---|---|
| committer | Joe Gordon <jogo@cloudscaling.com> | 2012-05-14 15:52:21 -0700 |
| commit | 6cb7801ac7d0f25dfbca0d8eb891feffdec695c5 (patch) | |
| tree | 2df7a3739a799c26e6d21ff5822fabe1dcb9e538 /nova/volume | |
| parent | fbae8d09fdb9ad370fa827aab0f9bfe0c0c7041f (diff) | |
| download | nova-6cb7801ac7d0f25dfbca0d8eb891feffdec695c5.tar.gz nova-6cb7801ac7d0f25dfbca0d8eb891feffdec695c5.tar.xz nova-6cb7801ac7d0f25dfbca0d8eb891feffdec695c5.zip | |
Alphabetize imports
Except for nova/api/, nova/tests/, nova/virt/
In preparation for automated checking being enabled (N306)
Change-Id: I5af70ea13b470ce58695ef0a5e0ff9da3ac1b135
Diffstat (limited to 'nova/volume')
| -rw-r--r-- | nova/volume/api.py | 2 | ||||
| -rw-r--r-- | nova/volume/netapp.py | 2 | ||||
| -rw-r--r-- | nova/volume/nexenta/jsonrpc.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/nova/volume/api.py b/nova/volume/api.py index 33643954c..e029aa233 100644 --- a/nova/volume/api.py +++ b/nova/volume/api.py @@ -24,6 +24,7 @@ import functools from eventlet import greenthread +from nova.db import base from nova import exception from nova import flags from nova import log as logging @@ -31,7 +32,6 @@ import nova.policy from nova import quota from nova import rpc from nova import utils -from nova.db import base FLAGS = flags.FLAGS flags.DECLARE('storage_availability_zone', 'nova.volume.manager') diff --git a/nova/volume/netapp.py b/nova/volume/netapp.py index 5ee0a0371..711d8a140 100644 --- a/nova/volume/netapp.py +++ b/nova/volume/netapp.py @@ -23,8 +23,8 @@ ONTAP 7-mode storage systems with installed iSCSI licenses. """ -import time import string +import time import suds from suds import client diff --git a/nova/volume/nexenta/jsonrpc.py b/nova/volume/nexenta/jsonrpc.py index 6487333ec..03921bfdb 100644 --- a/nova/volume/nexenta/jsonrpc.py +++ b/nova/volume/nexenta/jsonrpc.py @@ -25,8 +25,8 @@ import json import urllib2 -from nova.volume import nexenta from nova import log as logging +from nova.volume import nexenta LOG = logging.getLogger("nova.volume.nexenta.jsonrpc") |
