summaryrefslogtreecommitdiff
path: root/nova/crypto.py
diff options
context:
space:
mode:
authorDavanum Srinivas <dims@linux.vnet.ibm.com>2014-07-30 14:40:43 -0700
committerDavanum Srinivas <dims@linux.vnet.ibm.com>2014-10-06 21:41:17 -0400
commit323fa6fef7e92a2bded1f7da37b8dfc98f8af1e0 (patch)
treed086b8e62af819555bb50eb69e390f7b0849cef3 /nova/crypto.py
parent97f60c138c6a0cc8c28ae71099b5cc31a9332ca8 (diff)
downloadnova-323fa6fef7e92a2bded1f7da37b8dfc98f8af1e0.tar.gz
Use oslo.utils
oslo.utils library now provides the functionality previously in oslo-incubator's excutils, importutils, network_utils, strutils timeutils, units etc. Some modules already moved to oslo.utils will still be around since other code in nova/openstack/common/ are using it and will be removed in a subsequent commit. Change-Id: Idc716342535fdfa680963e0e073ddb46f5f1eb34
Diffstat (limited to 'nova/crypto.py')
-rw-r--r--nova/crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/crypto.py b/nova/crypto.py
index e5c4161433..2caec2f068 100644
--- a/nova/crypto.py
+++ b/nova/crypto.py
@@ -29,6 +29,8 @@ import string
import struct
from oslo.config import cfg
+from oslo.utils import excutils
+from oslo.utils import timeutils
from pyasn1.codec.der import encoder as der_encoder
from pyasn1.type import univ
@@ -36,11 +38,9 @@ from nova import context
from nova import db
from nova import exception
from nova.i18n import _
-from nova.openstack.common import excutils
from nova.openstack.common import fileutils
from nova.openstack.common import log as logging
from nova.openstack.common import processutils
-from nova.openstack.common import timeutils
from nova import paths
from nova import utils