commit: ab7efe823ace977d8b46f324bdcbf44dcb7ca6d9
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 21 18:11:17 2015 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Nov 21 18:11:43 2015 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ab7efe82
portage.util.locale: enable absolute_import (bug 566372)
Since commit e5ba8d096e56495a9b516cea818d48e104d62bca,
absolute_import is required for python2 compatibility.
Fixes: e5ba8d096e56 ("EAPI 6: Enforce posixish LC_CTYPE")
X-Gentoo-Bug: 566372
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=566372
pym/portage/util/locale.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/pym/portage/util/locale.py b/pym/portage/util/locale.py
index c3332ea..05b3979 100644
--- a/pym/portage/util/locale.py
+++ b/pym/portage/util/locale.py
@@ -6,7 +6,7 @@ Function to check whether the current used LC_CTYPE handles case
transformations of ASCII characters in a way compatible with the POSIX
locale.
"""
-from __future__ import unicode_literals
+from __future__ import absolute_import, unicode_literals
import locale
import logging
@@ -26,7 +26,6 @@ locale_categories = (
'LC_PAPER', 'LC_TELEPHONE',
)
-
_check_locale_cache = {}