From 4f83cdc434743e2d5c14bd535643c4c1873a1d45 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 16 Feb 2024 10:08:48 -0800 Subject: [PATCH] osbuild-depsolve-dnf5: module_hotfixes wasn't really set Typo in the previous change, wasn't setting `repo.module_hotfixes` --- tools/osbuild-depsolve-dnf5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osbuild-depsolve-dnf5 b/tools/osbuild-depsolve-dnf5 index 08d05a4f..ca1e5b79 100755 --- a/tools/osbuild-depsolve-dnf5 +++ b/tools/osbuild-depsolve-dnf5 @@ -215,7 +215,7 @@ class Solver(): # This option if True disables modularization filtering. Effectively # disabling modularity for given repository. if "module_hotfixes" in desc: - module_hotfixes = desc["module_hotfixes"] + repo.module_hotfixes = desc["module_hotfixes"] # This needs to be set on each repo repo.set_substitutions(self.substitutions)