From: Zac Medico Date: Tue, 4 Oct 2011 15:33:41 +0000 (-0700) Subject: RepoConfig: sort __slots__ X-Git-Tag: v2.2.0_alpha61~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=61cc6d8f20de04d4b4f46618411a0fb568d0b0ab;p=portage.git RepoConfig: sort __slots__ --- diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index 979b85929..e3027a798 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -43,10 +43,12 @@ def _gen_valid_repo(name): class RepoConfig(object): """Stores config of one repository""" - __slots__ = ['aliases', 'eclass_overrides', 'eclass_locations', 'location', 'user_location', 'masters', 'main_repo', - 'missing_repo_name', 'name', 'priority', 'sync', 'format', 'sign_manifest', 'thin_manifest', - 'allow_missing_manifest', 'create_manifest', 'disable_manifest', 'cache_is_authoritative', - 'trust_authoritative_cache', 'manifest_hashes'] + __slots__ = ('aliases', 'allow_missing_manifest', + 'cache_is_authoritative', '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', + 'trust_authoritative_cache', 'user_location') def __init__(self, name, repo_opts): """Build a RepoConfig with options in repo_opts