1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 19:49:09 +00:00

Merge pull request #9451 from bcoca/load_aliases

Load aliases
This commit is contained in:
Brian Coca 2014-11-04 10:24:11 -05:00
commit afd8cca345
5 changed files with 212 additions and 50 deletions

View file

@ -178,6 +178,9 @@ class PluginLoader(object):
self._plugin_path_cache[full_name] = path
return path
if not name.startswith('_'):
return self.find_plugin('_' + name, suffixes, transport)
return None
def has_plugin(self, name):