summaryrefslogtreecommitdiff
path: root/nova/crypto.py
diff options
context:
space:
mode:
authorDavanum Srinivas <dims@linux.vnet.ibm.com>2014-10-24 14:18:30 -0400
committerDavanum Srinivas (dims) <davanum@gmail.com>2014-10-27 16:56:13 +0000
commit382294762b08abb1921a77b00608ac941478ce05 (patch)
tree7d9e685a55c208e11080deabfa39ba266fe2523f /nova/crypto.py
parentc699fbdcfa8f5b9e45d1ccdb48f242a01ec930bd (diff)
downloadnova-382294762b08abb1921a77b00608ac941478ce05.tar.gz
Switch Nova to use oslo.concurrency
Let's switch to the newly released oslo library for the processutils and lockutils. Change-Id: Icf7831261322abd0a6fc5439fe09b1d4cb614cb7
Diffstat (limited to 'nova/crypto.py')
-rw-r--r--nova/crypto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/crypto.py b/nova/crypto.py
index c547bcb6e1..36bf43858f 100644
--- a/nova/crypto.py
+++ b/nova/crypto.py
@@ -28,6 +28,7 @@ import re
import string
import struct
+from oslo.concurrency import processutils
from oslo.config import cfg
from oslo.utils import excutils
from oslo.utils import timeutils
@@ -40,7 +41,6 @@ from nova import exception
from nova.i18n import _
from nova.openstack.common import fileutils
from nova.openstack.common import log as logging
-from nova.openstack.common import processutils
from nova import paths
from nova import utils