commit:     4f73aebefe23704e5758f08f8be3ae130015f271
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 10 21:42:30 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> 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 <dolsen <AT> 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:

Reply via email to