diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-06-03 14:35:11 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-06-03 14:35:11 +0000 |
| commit | 81558d9ce387fa9786da994bf9cbfc7362726bf3 (patch) | |
| tree | 2c299b7c3f86cfc2f6f1b95e05854b8ffdd008df | |
| parent | db7d4ebcfb6c071423b6623b1bad6526cca32235 (diff) | |
| parent | f73716077772f44621a9f544388c4c32403734dc (diff) | |
| download | python-openstackclient-81558d9ce387fa9786da994bf9cbfc7362726bf3.tar.gz | |
Merge "Get rid of oslo_i18n deprecation notice"
| -rw-r--r-- | openstackclient/i18n.py | 4 |
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 |
