From: Zac Medico Date: Sun, 16 Oct 2011 06:18:39 +0000 (-0700) Subject: RepoConfig: sort __slots__ X-Git-Tag: v2.2.0_alpha68~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6e2da854b5bebba5b0a8e913e3b6495770de995c;p=portage.git RepoConfig: sort __slots__ --- diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index cf268f825..12829c33b 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""" __slots__ = ('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') def __init__(self, name, repo_opts): """Build a RepoConfig with options in repo_opts