From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7566D1384B4 for ; Mon, 16 Nov 2015 01:29:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C4AC21C043; Mon, 16 Nov 2015 01:29:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC66B21C043 for ; Mon, 16 Nov 2015 01:29:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 966DE33BE93 for ; Mon, 16 Nov 2015 01:29:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C75A2A96 for ; Mon, 16 Nov 2015 01:29:51 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1447637363.b7a07159e472912170d69d3520b188115b810561.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/locale.py X-VCS-Directories: pym/portage/util/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b7a07159e472912170d69d3520b188115b810561 X-VCS-Branch: master Date: Mon, 16 Nov 2015 01:29:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 63f8eca0-5d44-4a2e-9097-10f97f7ff8d6 X-Archives-Hash: 092563dbeae5610e9443ddc0f733d8a4 commit: b7a07159e472912170d69d3520b188115b810561 Author: Zac Medico gentoo org> AuthorDate: Mon Nov 16 01:28:55 2015 +0000 Commit: Zac Medico gentoo 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: