commit: 1e62b8fc00bc8c3259fa88d1bd4375fcf9ff57b3
Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 3 02:21:46 2015 +0000
Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 3 02:21:46 2015 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=1e62b8fc
reposconf.py: Corrects declaration of self.overlays to overlays parameter
---
layman/config_modules/reposconf/reposconf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layman/config_modules/reposconf/reposconf.py
b/layman/config_modules/reposconf/reposconf.py
index e25160b..7336808 100644
--- a/layman/config_modules/reposconf/reposconf.py
+++ b/layman/config_modules/reposconf/reposconf.py
@@ -8,7 +8,7 @@
# Handles modifications to /etc/portage/repos.conf/layman.conf
#
# Copyright:
-# (c) 2014 Devan Franchini
+# (c) 2015 Devan Franchini
# Distributed under the terms of the GNU General Public License v2
#
# Author(s):
@@ -41,7 +41,7 @@ class ConfigHandler:
self.config = config
self.output = config['output']
- self.overlays = {}
+ self.overlays = overlays
self.path = config['repos_conf']
self.storage = config['storage']