1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #4547 from stoned/find_plugin-fix

when searching for a plugin only look for a regular file
This commit is contained in:
Michael DeHaan 2013-10-16 12:35:02 -07:00
commit f9ac88c9da

View file

@ -151,7 +151,7 @@ class PluginLoader(object):
for i in self._get_paths():
path = os.path.join(i, "%s%s" % (name, suffix))
if os.path.exists(path):
if os.path.isfile(path):
self._plugin_path_cache[name] = path
return path