Merge pull request #3010 from MycroftAI/bugfix/skill-loader-log-msg

Fix formatting error in skill loader log message
pull/3012/head
Åke 2021-10-16 13:06:47 +02:00 committed by GitHub
commit 6daccc4171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def remove_submodule_refs(module_name):
module_name: name of skill module.
"""
submodules = []
LOG.debug('Skill module'.format(module_name))
LOG.debug('Skill module: {}'.format(module_name))
# Collect found submodules
for m in sys.modules:
if m.startswith(module_name + '.'):