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 ECBD01381F3 for ; Wed, 19 Jun 2013 19:22:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 767A3E09E8; Wed, 19 Jun 2013 19:22:07 +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 0A209E09E8 for ; Wed, 19 Jun 2013 19:22:06 +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 10A8D33E476 for ; Wed, 19 Jun 2013 19:22:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id ADDF3E468F for ; Wed, 19 Jun 2013 19:22:04 +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: <1371669704.18297c51e845cfc0512cc5c3013e96a21a16479f.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: 18297c51e845cfc0512cc5c3013e96a21a16479f X-VCS-Branch: master Date: Wed, 19 Jun 2013 19:22:04 +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: cfe192a4-659f-4bb7-865b-919ea74c81d2 X-Archives-Hash: 46c09c2d69cc2b092bf0088753cb1e5a commit: 18297c51e845cfc0512cc5c3013e96a21a16479f Author: Zac Medico gentoo org> AuthorDate: Wed Jun 19 19:21:44 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jun 19 19:21:44 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=18297c51 RepoConfigLoader: fix last commit --- pym/portage/repository/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index 7de6954..49af5e8 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -619,7 +619,7 @@ class RepoConfigLoader(object): # Include repo.name in sort key, for predictable sorting # even when priorities are equal. prepos_order = sorted(prepos.items(), - key=lambda r:(r[1].priority or 0, repo.name)) + key=lambda r:(r[1].priority or 0, r[1].name)) # filter duplicates from aliases, by only including # items where repo.name == key