Skip to content

Commit b9fae4a

Browse files
sijisgbin
authored andcommitted
fix: variable name typo (#1244)
Fixes #1233
1 parent eea5812 commit b9fae4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

errbot/backend_plugin_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, bot_config, base_module: str, plugin_name: str, base_class: T
3434
if plugin_info.name == plugin_name:
3535
self.plugin_info = plugin_info
3636
return
37-
raise PluginNotFoundException(f'Could not find the plugin named {plugin_name} in {all_plugin_paths}.')
37+
raise PluginNotFoundException(f'Could not find the plugin named {plugin_name} in {all_plugins_paths}.')
3838

3939
def load_plugin(self) -> Any:
4040
plugin_path = self.plugin_info.location.parent

0 commit comments

Comments
 (0)