summaryrefslogtreecommitdiffstats
path: root/nova/auth
diff options
context:
space:
mode:
authorJesse Andrews <jesse@gigantor.local>2010-07-15 18:13:48 -0500
committerJesse Andrews <jesse@gigantor.local>2010-07-15 18:13:48 -0500
commit3ce6ec1a83731da868c5a77c4684808a54ffd8fd (patch)
tree9d92e81ec74926526841583737169d034c70de3a /nova/auth
parentc8fdce011092f23efd55385b45db8e6f3886beb1 (diff)
reorder imports spacing
Diffstat (limited to 'nova/auth')
-rw-r--r--nova/auth/signer.py5
-rw-r--r--nova/auth/users.py3
2 files changed, 3 insertions, 5 deletions
diff --git a/nova/auth/signer.py b/nova/auth/signer.py
index a3d3c5329..83831bfac 100644
--- a/nova/auth/signer.py
+++ b/nova/auth/signer.py
@@ -43,11 +43,12 @@
Utility class for parsing signed AMI manifests.
"""
-import logging
+import base64
import hashlib
import hmac
+import logging
import urllib
-import base64
+
from nova.exception import Error
class Signer(object):
diff --git a/nova/auth/users.py b/nova/auth/users.py
index 72edcc2aa..2c153c788 100644
--- a/nova/auth/users.py
+++ b/nova/auth/users.py
@@ -26,7 +26,6 @@ import os
import shutil
import signer
import string
-from string import Template
import tempfile
import uuid
import zipfile
@@ -44,8 +43,6 @@ from nova import exception
from nova import flags
from nova import crypto
from nova import utils
-
-
from nova import objectstore # for flags
FLAGS = flags.FLAGS