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 3CEF61381F3 for ; Mon, 23 Sep 2013 20:59:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 289B2E0AA5; Mon, 23 Sep 2013 20:59:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3AACE0AA5 for ; Mon, 23 Sep 2013 20:59:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BB0E33ED84 for ; Mon, 23 Sep 2013 20:59:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D46C7E468F for ; Mon, 23 Sep 2013 20:59:36 +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: <1379969961.feefac9fe8d2861472a043f4820058759fb037c4.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/repository/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/repository/config.py X-VCS-Directories: pym/portage/repository/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: feefac9fe8d2861472a043f4820058759fb037c4 X-VCS-Branch: master Date: Mon, 23 Sep 2013 20:59:36 +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: 15043264-3b1a-4c3d-96b9-fef20324623a X-Archives-Hash: 17865f86d5eef61560c63332d2e73b8e commit: feefac9fe8d2861472a043f4820058759fb037c4 Author: Zac Medico gentoo org> AuthorDate: Mon Sep 23 20:59:21 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Sep 23 20:59:21 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=feefac9f RepoConfigLoader: Fix indent Indent was wrong in commit 923f912d7c5ade8b5b18f23f1cd12add08f73c21. --- pym/portage/repository/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index b14eeb7..0d6edf4 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -647,11 +647,11 @@ class RepoConfigLoader(object): "to nonexistent directory: '%s'") % (repo_name, repo.location), level=logging.ERROR, noiselevel=-1) - # Ignore missing directory for 'gentoo' so that - # first sync with emerge-webrsync is possible. - if repo.name != 'gentoo': - del prepos[repo_name] - continue + # Ignore missing directory for 'gentoo' so that + # first sync with emerge-webrsync is possible. + if repo.name != 'gentoo': + del prepos[repo_name] + continue # After removing support for PORTDIR_OVERLAY, the following check can be: # if repo.missing_repo_name: