fixed issue with subclasses across the repos clobbering each other, they

now merge
pull/9485/head
Brian Coca 10 years ago
parent 2ba5c3c66b
commit 339d1ccc8b

@ -135,7 +135,7 @@ def list_modules(module_dir, depth=0):
res = list_modules(d, depth + 1)
for key in res.keys():
if key in categories:
categories[key].update(res[key])
categories[key] = ansible.utils.merge_hash(categories[key], res[key])
res.pop(key, None)
if depth < 2:

Loading…
Cancel
Save