From 343e3bd0e16df1106d82fa6087a7247dc67bb52b Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 30 Jan 2015 18:39:15 -0600 Subject: [PATCH] Drop use of namespaced oslo.i18n Related-blueprint: drop-namespace-packages Change-Id: Ic8247cb896ba6337932d7a74618debd698584fa0 --- oslo_concurrency/_i18n.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oslo_concurrency/_i18n.py b/oslo_concurrency/_i18n.py index eea7d44..0141a5e 100644 --- a/oslo_concurrency/_i18n.py +++ b/oslo_concurrency/_i18n.py @@ -14,9 +14,9 @@ # License for the specific language governing permissions and limitations # under the License. -from oslo import i18n +import oslo_i18n -_translators = i18n.TranslatorFactory(domain='oslo.concurrency') +_translators = oslo_i18n.TranslatorFactory(domain='oslo.concurrency') # The primary translation function using the well-known name "_" _ = _translators.primary