commit:     b7a07159e472912170d69d3520b188115b810561
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 16 01:28:55 2015 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Nov 16 01:29:23 2015 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=b7a07159

util/locale: Fix IndentationError in check_locale

Fixes: 90ccd027ee56 ("util/locale: Cache check_locale() results for specific 
locales")

 pym/portage/util/locale.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pym/portage/util/locale.py b/pym/portage/util/locale.py
index 58ecb2a..c3332ea 100644
--- a/pym/portage/util/locale.py
+++ b/pym/portage/util/locale.py
@@ -96,6 +96,7 @@ def check_locale(silent=False, env=None):
                try:
                        return _check_locale_cache[mylocale]
                except KeyError:
+                       pass
 
        pid = os.fork()
        if pid == 0:

Reply via email to