summaryrefslogtreecommitdiff
path: root/oslo_i18n/_gettextutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_i18n/_gettextutils.py')
-rw-r--r--oslo_i18n/_gettextutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oslo_i18n/_gettextutils.py b/oslo_i18n/_gettextutils.py
index 9872a9c..19f093b 100644
--- a/oslo_i18n/_gettextutils.py
+++ b/oslo_i18n/_gettextutils.py
@@ -44,9 +44,9 @@ def install(domain):
:param domain: the translation domain
"""
- from six import moves
+ import builtins
tf = _factory.TranslatorFactory(domain)
- moves.builtins.__dict__['_'] = tf.primary
+ builtins.__dict__['_'] = tf.primary
_AVAILABLE_LANGUAGES = {}