Make alias autodetection for symlinked modules independent of glob() order. (#40293) (#41266)

(cherry picked from commit 2a29b2ff7f)
pull/41276/head
Alicia Cozine 8 years ago committed by Matt Davis
parent 609c792072
commit 723dcea33e

@ -251,7 +251,7 @@ def get_plugin_info(module_dir, limit_to=None, verbose=False):
module_info[module] = {'path': module_path,
'source': os.path.relpath(module_path, module_dir),
'deprecated': deprecated,
'aliases': set(),
'aliases': module_info[module].get('aliases', set()),
'metadata': metadata,
'doc': doc,
'examples': examples,

Loading…
Cancel
Save