From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 13EF61393DD for ; Thu, 28 Aug 2014 22:01:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 651DEE0880; Thu, 28 Aug 2014 22:01:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6334E0880 for ; Thu, 28 Aug 2014 22:01:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E43DF340030 for ; Thu, 28 Aug 2014 22:01:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85A1941BF for ; Thu, 28 Aug 2014 22:01:48 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1409247071.5551efcfc8f97e5cd5053f128cb596d6aa1066b5.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/updater.py X-VCS-Directories: layman/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 5551efcfc8f97e5cd5053f128cb596d6aa1066b5 X-VCS-Branch: master Date: Thu, 28 Aug 2014 22:01:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 89333821-115b-4dad-8083-d7a387295b8f X-Archives-Hash: 81470faa636f3506eee0385ea574c78b commit: 5551efcfc8f97e5cd5053f128cb596d6aa1066b5 Author: Devan Franchini gentoo org> AuthorDate: Thu Aug 28 17:31:11 2014 +0000 Commit: Devan Franchini gentoo 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()