summaryrefslogtreecommitdiff
path: root/troveclient/compat
diff options
context:
space:
mode:
authorAmrith Kumar <amrith@tesora.com>2014-12-09 17:29:24 -0500
committerAmrith Kumar <amrith@tesora.com>2015-01-23 07:49:23 -0500
commitdca7bfe1e6727a347da9b4ad1f7bb7932a2eb134 (patch)
tree8e60d166ced2ef063867f41ae16268e1edf6e359 /troveclient/compat
parent96e44b5a9b7ca3caf6e3a43ec923d2bc49cca563 (diff)
downloadpython-troveclient-dca7bfe1e6727a347da9b4ad1f7bb7932a2eb134.tar.gz
Handle obsolete and unused oslo modules
The python-troveclient module still had references to strutils, and gettextutils which are now obsolete. Change-Id: Ia54a565c00966b0a1cb5f18c6e17e1237b2bfee6 Partial-Bug: #1380789
Diffstat (limited to 'troveclient/compat')
-rw-r--r--troveclient/compat/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/troveclient/compat/utils.py b/troveclient/compat/utils.py
index 2b21e9e..f4d4d2c 100644
--- a/troveclient/compat/utils.py
+++ b/troveclient/compat/utils.py
@@ -14,7 +14,7 @@
import os
-from troveclient.openstack.common import strutils
+from oslo.utils import strutils
class HookableMixin(object):