commit:     9ac9a76ecb650c19ae12163bc0695014adcf7394
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat May 10 18:53:37 2014 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Oct 20 03:48:34 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9ac9a76e

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)

Reply via email to