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/
Date: Thu, 28 Aug 2014 22:01:54
Message-Id: 1409247071.5551efcfc8f97e5cd5053f128cb596d6aa1066b5.twitch153@gentoo
1 commit: 5551efcfc8f97e5cd5053f128cb596d6aa1066b5
2 Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 28 17:31:11 2014 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 28 17:31:11 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=5551efcf
7
8 updater.py: Adds proper import for make.conf module
9
10 To reflect the modular config type plug-ins, we needed to properly
11 import the module to write to the make.conf config.
12
13 ---
14 layman/updater.py | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/layman/updater.py b/layman/updater.py
18 index e6d3596..aa5f82e 100644
19 --- a/layman/updater.py
20 +++ b/layman/updater.py
21 @@ -168,8 +168,8 @@ class Main(object):
22 self.output.info(" Creating layman's make.conf file")
23 # create layman's %(storage)s/make.conf
24 # so portage won't error
25 - from layman.makeconf import MakeConf
26 - maker = MakeConf(self.config, None)
27 + from layman.config_modules.makeconf.makeconf import ConfigHandler
28 + maker = ConfigHandler(self.config, None)
29 maker.write()