Commit 25f071b6 by Brian Coca

fixed called to find plugin, transport is not needed as suffixes are passed

parent 7a81167b
...@@ -83,7 +83,7 @@ class ActionBase: ...@@ -83,7 +83,7 @@ class ActionBase:
# Search module path(s) for named module. # Search module path(s) for named module.
module_suffixes = getattr(self._connection, 'default_suffixes', None) module_suffixes = getattr(self._connection, 'default_suffixes', None)
module_path = self._module_loader.find_plugin(module_name, module_suffixes, transport=self._connection.get_transport()) module_path = self._module_loader.find_plugin(module_name, module_suffixes)
if module_path is None: if module_path is None:
module_path2 = self._module_loader.find_plugin('ping', module_suffixes) module_path2 = self._module_loader.find_plugin('ping', module_suffixes)
if module_path2 is not None: if module_path2 is not None:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment