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/auth | |
| 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/auth')
| -rw-r--r-- | nova/auth/dbdriver.py | 2 | ||||
| -rw-r--r-- | nova/auth/manager.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nova/auth/dbdriver.py b/nova/auth/dbdriver.py index 1d337fee9..a6ce5a4c4 100644 --- a/nova/auth/dbdriver.py +++ b/nova/auth/dbdriver.py @@ -21,8 +21,8 @@ Auth driver using the DB as its backend. """ from nova import context -from nova import exception from nova import db +from nova import exception class DbDriver(object): diff --git a/nova/auth/manager.py b/nova/auth/manager.py index 234b527bf..c4e438daf 100644 --- a/nova/auth/manager.py +++ b/nova/auth/manager.py @@ -28,6 +28,7 @@ import string # pylint: disable=W0402 import uuid import zipfile +from nova.auth import signer from nova import context from nova import crypto from nova import db @@ -37,7 +38,6 @@ from nova import log as logging from nova.openstack.common import cfg from nova.openstack.common import importutils from nova import utils -from nova.auth import signer auth_opts = [ |
