loader: Avoid loading autosave files (#53856)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/52917/head
Abhijeet Kasurde 6 years ago committed by Brian Coca
parent 64943e2f9d
commit 73e171fd94

@ -345,7 +345,7 @@ class PluginLoader:
# HACK: We have no way of executing python byte compiled files as ansible modules so specifically exclude them
# FIXME: I believe this is only correct for modules and module_utils.
# For all other plugins we want .pyc and .pyo should be valid
if full_path.endswith(('.pyc', '.pyo')):
if any(full_path.endswith(x) for x in C.BLACKLIST_EXTS):
continue
splitname = os.path.splitext(full_name)

Loading…
Cancel
Save