commit: e06ba56d52350fc043459f56a62ce6434ce7b387
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 23:00:50 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e06ba56d
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 8119bcec3..9b6222a6f 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: