Postpone inheritance implementation

This commit is contained in:
Bo Maryniuk 2018-03-21 14:13:29 +01:00
parent cad7093a31
commit 19ca258a82

View File

@ -188,7 +188,8 @@ def get_ext_tops(config):
for ns, cfg in salt.ext.six.iteritems(alt):
alternatives[ns] = cfg
if cfg.get('dependencies') == 'inherit':
pass # TODO: implement inheritance of the modules from _here_
# TODO: implement inheritance of the modules from _here_
raise NotImplementedError('This feature is not yet implemented')
else:
for dep in cfg.get('dependencies'):
mod = cfg['dependencies'][dep] or ''