summaryrefslogtreecommitdiff
path: root/openstackclient/common
diff options
context:
space:
mode:
authorOleksii Chuprykov <ochuprykov@mirantis.com>2014-09-19 14:24:53 +0300
committerOleksii Chuprykov <ochuprykov@mirantis.com>2014-09-22 13:07:31 +0300
commitffe976ce3edf2e4dc5dd50247a182ca690b4fdd9 (patch)
treef7fa8f1c41a49a755fe9d681f0974ecb45cf51c9 /openstackclient/common
parentceae0bed428eec212e53e41c6669eefebad81b59 (diff)
downloadpython-openstackclient-ffe976ce3edf2e4dc5dd50247a182ca690b4fdd9.tar.gz
Use oslo.utils
Module `importutils` from common code was graduated to oslo.utils, so it would be great if we reuse this library. Remove unused strutils.py and gettextutils.py Change-Id: Iaae19fc5018d83103e5f15ff76d6da686bfdf5f8
Diffstat (limited to 'openstackclient/common')
-rw-r--r--openstackclient/common/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/common/utils.py b/openstackclient/common/utils.py
index c013deee..5c5466df 100644
--- a/openstackclient/common/utils.py
+++ b/openstackclient/common/utils.py
@@ -21,8 +21,9 @@ import os
import six
import time
+from oslo.utils import importutils
+
from openstackclient.common import exceptions
-from openstackclient.openstack.common import importutils
def find_resource(manager, name_or_id):