From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 446A4139695 for ; Mon, 10 Jul 2017 22:31:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B52027420B; Mon, 10 Jul 2017 22:31:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A3472741AA for ; Mon, 10 Jul 2017 22:31:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3AA1E3419B8 for ; Mon, 10 Jul 2017 22:31:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 611AB74B0 for ; Mon, 10 Jul 2017 22:31:12 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1499725774.4f73aebefe23704e5758f08f8be3ae130015f271.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/modules/scan/ X-VCS-Repository: proj/portage X-VCS-Files: repoman/pym/repoman/modules/scan/module.py X-VCS-Directories: repoman/pym/repoman/modules/scan/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 4f73aebefe23704e5758f08f8be3ae130015f271 X-VCS-Branch: repoman Date: Mon, 10 Jul 2017 22:31:12 +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: a4ec1d5a-da96-4f74-9b79-9af6d8d6a6c3 X-Archives-Hash: 7013922e5ad76f5b2599c9412cddfb52 commit: 4f73aebefe23704e5758f08f8be3ae130015f271 Author: Brian Dolbec gentoo org> AuthorDate: Mon Jul 10 21:42:30 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Mon Jul 10 22:29:34 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4f73aebe repoman: modules/scan/module.py: Prefix logging messages Signed-off-by: Brian Dolbec gentoo.org> repoman/pym/repoman/modules/scan/module.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repoman/pym/repoman/modules/scan/module.py b/repoman/pym/repoman/modules/scan/module.py index f7f135f73..5424fab65 100644 --- a/repoman/pym/repoman/modules/scan/module.py +++ b/repoman/pym/repoman/modules/scan/module.py @@ -25,10 +25,11 @@ class ModuleConfig(object): @param configpaths: ordered list of filepaths to load ''' - self.configpaths = configpaths + self.configpaths = [os.path.join(path, 'repository.yml') for path in configpaths] + logging.debug("ModuleConfig; configpaths: %s", self.configpaths) self.controller = Modules(path=MODULES_PATH, namepath="repoman.modules.scan") - logging.debug("module_names: %s", self.controller.module_names) + logging.debug("ModuleConfig; module_names: %s", self.controller.module_names) self._configs = None self.enabled = [] @@ -41,7 +42,6 @@ class ModuleConfig(object): logging.debug("ModuleConfig; Processing loop %s", loop) setattr(self, '%s_loop' % loop, self._determine_list(loop)) - def load_configs(self, configpaths=None): '''load the config files in order''' if configpaths: