From 5bf2af861f674918f8ae9b75acfcb69009b740f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85ke=20Forslund?= Date: Wed, 4 Nov 2020 08:04:46 +0100 Subject: [PATCH] Fix typo preventing STT plugins to load --- mycroft/stt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mycroft/stt/__init__.py b/mycroft/stt/__init__.py index 7f7df75ad128..b606961bbb28 100644 --- a/mycroft/stt/__init__.py +++ b/mycroft/stt/__init__.py @@ -581,7 +581,7 @@ def create(): if module in STTFactory.CLASSES: clazz = STTFactory.CLASSES[module] else: - load_stt_plugin(module) + clazz = load_stt_plugin(module) LOG.info('Loaded the STT plugin {}'.format(module)) return clazz() except Exception: