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
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):