[FIX] module_change_auto_install : auto_install is now a set of dependencies. (before, was boolean)

pull/2424/head
Sylvain LE GAL 2021-12-22 16:14:56 +01:00
parent e6dbec9734
commit dbbcdb64c9
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def _overload_load_information_from_description_file(module, mod_path=None):
if not auto_install and module in modules_auto_install_enabled:
_logger.info("Module '%s' has been marked as auto installable." % module)
res["auto_install"] = True
res["auto_install"] = set(res["depends"])
return res