summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorTerryHowe <terrylhowe@gmail.com>2015-06-02 09:21:31 -0600
committerTerryHowe <terrylhowe@gmail.com>2015-06-02 09:21:31 -0600
commitf73716077772f44621a9f544388c4c32403734dc (patch)
tree663f1b56eb200a4d1de56cc310476efc8e30b72d /openstackclient
parenta6ea6d9f94cf4340e021ecd53ef3e2626524c506 (diff)
downloadpython-openstackclient-f73716077772f44621a9f544388c4c32403734dc.tar.gz
Get rid of oslo_i18n deprecation notice
Change-Id: I12aa58b808c05d3eb6f5efcdc84df57f54a9782e
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/i18n.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/i18n.py b/openstackclient/i18n.py
index 3611b315..3a11c1d0 100644
--- a/openstackclient/i18n.py
+++ b/openstackclient/i18n.py
@@ -13,9 +13,9 @@
# under the License.
#
-from oslo import i18n
+import oslo_i18n
-_translators = i18n.TranslatorFactory(domain='python-openstackclient')
+_translators = oslo_i18n.TranslatorFactory(domain='python-openstackclient')
# The primary translation function using the well-known name "_"
_ = _translators.primary