commit: 7895fb1406f9661664bb944ff4f0aa4fcd2c577d Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sat May 10 18:53:37 2014 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com> CommitDate: Tue Sep 30 00:42:25 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=7895fb14
repository/config.py: Add auto_sync to the override-able variables --- pym/portage/repository/config.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index bb54b57..10bd477 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -462,8 +462,10 @@ class RepoConfigLoader(object): if repos_conf_opts is not None: # Selectively copy only the attributes which # repos.conf is allowed to override. - for k in ('aliases', 'eclass_overrides', 'force', 'masters', - 'priority', 'sync_cvs_repo', 'sync_type', 'sync_uri'): + for k in ('aliases', 'auto_sync', 'eclass_overrides', + 'force', 'masters', 'priority', 'sync_cvs_repo', + 'sync_type', 'sync_uri', + ): v = getattr(repos_conf_opts, k, None) if v is not None: setattr(repo, k, v)