diff options
author | Devan Franchini <twitch153@gentoo.org> | 2014-08-28 13:31:11 -0400 |
---|---|---|
committer | Devan Franchini <twitch153@gentoo.org> | 2014-08-28 13:31:11 -0400 |
commit | 5551efcfc8f97e5cd5053f128cb596d6aa1066b5 (patch) | |
tree | 20c18d0802a8771dfa874bbf7d27e5e3852beae9 | |
parent | makeconf.py: Ensures disable/enable compatibility (diff) | |
download | layman-5551efcfc8f97e5cd5053f128cb596d6aa1066b5.tar.gz layman-5551efcfc8f97e5cd5053f128cb596d6aa1066b5.tar.bz2 layman-5551efcfc8f97e5cd5053f128cb596d6aa1066b5.zip |
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.
-rw-r--r-- | layman/updater.py | 4 |
1 files 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() |