commit: 5551efcfc8f97e5cd5053f128cb596d6aa1066b5
Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 28 17:31:11 2014 +0000
Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Thu Aug 28 17:31:11 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=5551efcf
updater.py: Adds proper import for make.conf module
To reflect the modular config type plug-ins, we needed to properly
import the module to write to the make.conf config.
---
layman/updater.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layman/updater.py b/layman/updater.py
index e6d3596..aa5f82e 100644
--- a/layman/updater.py
+++ b/layman/updater.py
@@ -168,8 +168,8 @@ class Main(object):
self.output.info(" Creating layman's make.conf file")
# create layman's %(storage)s/make.conf
# so portage won't error
- from layman.makeconf import MakeConf
- maker = MakeConf(self.config, None)
+ from layman.config_modules.makeconf.makeconf import ConfigHandler
+ maker = ConfigHandler(self.config, None)
maker.write()