mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
This commit is contained in:
@@ -486,7 +486,10 @@ class PluginLoader:
|
||||
continue
|
||||
|
||||
if path not in self._module_cache:
|
||||
module = self._load_module_source(name, path)
|
||||
try:
|
||||
module = self._load_module_source(name, path)
|
||||
except Exception as e:
|
||||
display.warning("Skipping plugin (%s) as it seems to be invalid: %s" % (path, to_text(e)))
|
||||
self._module_cache[path] = module
|
||||
found_in_cache = False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user