From dbbcdb64c9b00daac899a55b768a292d379e2ab5 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Wed, 22 Dec 2021 16:14:56 +0100 Subject: [PATCH] [FIX] module_change_auto_install : auto_install is now a set of dependencies. (before, was boolean) --- module_change_auto_install/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module_change_auto_install/patch.py b/module_change_auto_install/patch.py index 14dc00fa6..259dfc239 100644 --- a/module_change_auto_install/patch.py +++ b/module_change_auto_install/patch.py @@ -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