Merge pull request #1447 from MycroftAI/bugfix/audio-service
Fix audio service loadingpull/1444/head
commit
179bc0d6bb
|
@ -122,6 +122,8 @@ def load_services(config, ws, path=None):
|
||||||
except Exception:
|
except Exception:
|
||||||
LOG.error('Failed to import module ' + descriptor['name'],
|
LOG.error('Failed to import module ' + descriptor['name'],
|
||||||
exc_info=True)
|
exc_info=True)
|
||||||
|
continue
|
||||||
|
|
||||||
if (hasattr(service_module, 'autodetect') and
|
if (hasattr(service_module, 'autodetect') and
|
||||||
callable(service_module.autodetect)):
|
callable(service_module.autodetect)):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue