From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RFK3r-0002zX-6n for garchives@archives.gentoo.org; Sun, 16 Oct 2011 06:19:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D02121C02B; Sun, 16 Oct 2011 06:18:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 173DF21C02B for ; Sun, 16 Oct 2011 06:18:52 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49FCF1B4015 for ; Sun, 16 Oct 2011 06:18:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 691DE80042 for ; Sun, 16 Oct 2011 06:18:50 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <6e2da854b5bebba5b0a8e913e3b6495770de995c.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: 6e2da854b5bebba5b0a8e913e3b6495770de995c Date: Sun, 16 Oct 2011 06:18:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 141b3179f029e956868da11b60ea157b commit: 6e2da854b5bebba5b0a8e913e3b6495770de995c Author: Zac Medico gentoo org> AuthorDate: Sun Oct 16 06:18:39 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Oct 16 06:18:39 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D6e2da854 RepoConfig: sort __slots__ --- pym/portage/repository/config.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/co= nfig.py index cf268f8..12829c3 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -44,11 +44,11 @@ class RepoConfig(object): """Stores config of one repository""" =20 __slots__ =3D ('aliases', 'allow_missing_manifest', - 'create_manifest', 'disable_manifest', + 'cache_format', 'create_manifest', 'disable_manifest', 'eclass_overrides', 'eclass_locations', 'format', 'location', 'main_repo', 'manifest_hashes', 'masters', 'missing_repo_name', 'name', 'priority', 'sign_manifest', 'sync', 'thin_manifest', - 'user_location', 'cache_format') + 'user_location') =20 def __init__(self, name, repo_opts): """Build a RepoConfig with options in repo_opts