commit: 8b4f49b245dd269fa1e09ffc3916638484bd7f34
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: Sat May 10 18:53:37 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=8b4f49b2
repository/config.py: Add auto_sync to the override-able variables
---
pym/portage/repository/config.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index 9912760..c71fbb7 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -463,7 +463,8 @@ class RepoConfigLoader(object):
# 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'):
+ 'priority',
'sync_cvs_repo', 'sync_type', 'sync_uri',
+ 'auto_sync'):
v =
getattr(repos_conf_opts, k, None)
if v is not None:
setattr(repo,
k, v)