summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavanum Srinivas <davanum@gmail.com>2015-03-12 07:10:54 -0400
committerDavanum Srinivas <davanum@gmail.com>2015-03-12 07:10:54 -0400
commitff5425613aa9848961f36f19244cc5d385b10a94 (patch)
treea7109e4451e966d0aecf9939e0cb85b1a404e69a
parente3656e7b975418e8de42b08048aafda52e2d0f3a (diff)
downloadoslo-concurrency-ff5425613aa9848961f36f19244cc5d385b10a94.tar.gz
Switch to non-namespaced module imports
Change-Id: Ib690450269c281409a095ed44bf5791d6c2a7cc5
-rw-r--r--oslo_concurrency/openstack/common/fileutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_concurrency/openstack/common/fileutils.py b/oslo_concurrency/openstack/common/fileutils.py
index ec26eaf..64cee1c 100644
--- a/oslo_concurrency/openstack/common/fileutils.py
+++ b/oslo_concurrency/openstack/common/fileutils.py
@@ -19,7 +19,7 @@ import logging
import os
import tempfile
-from oslo.utils import excutils
+from oslo_utils import excutils
LOG = logging.getLogger(__name__)