Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2748 from forslund/bugfix/load-stt-plugin
Browse files Browse the repository at this point in the history
Fix typo preventing STT plugins to load
  • Loading branch information
krisgesling committed Nov 4, 2020
2 parents 6802694 + 5bf2af8 commit 596a9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mycroft/stt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 596a9b7

Please sign in to comment.