Gentoo Archives: gentoo-commits

From: Devan Franchini <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/layman:master commit in: layman/config_modules/reposconf/
Date: Tue, 03 Feb 2015 02:43:41
Message-Id: 1422930106.1e62b8fc00bc8c3259fa88d1bd4375fcf9ff57b3.twitch153@gentoo
1 commit: 1e62b8fc00bc8c3259fa88d1bd4375fcf9ff57b3
2 Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 3 02:21:46 2015 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 3 02:21:46 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=1e62b8fc
7
8 reposconf.py: Corrects declaration of self.overlays to overlays parameter
9
10 ---
11 layman/config_modules/reposconf/reposconf.py | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/layman/config_modules/reposconf/reposconf.py b/layman/config_modules/reposconf/reposconf.py
15 index e25160b..7336808 100644
16 --- a/layman/config_modules/reposconf/reposconf.py
17 +++ b/layman/config_modules/reposconf/reposconf.py
18 @@ -8,7 +8,7 @@
19 # Handles modifications to /etc/portage/repos.conf/layman.conf
20 #
21 # Copyright:
22 -# (c) 2014 Devan Franchini
23 +# (c) 2015 Devan Franchini
24 # Distributed under the terms of the GNU General Public License v2
25 #
26 # Author(s):
27 @@ -41,7 +41,7 @@ class ConfigHandler:
28
29 self.config = config
30 self.output = config['output']
31 - self.overlays = {}
32 + self.overlays = overlays
33 self.path = config['repos_conf']
34 self.storage = config['storage']