13 lines
679 B
Diff
13 lines
679 B
Diff
diff -uprN a/pungi/phases/gather/sources/source_module.py b/pungi/phases/gather/sources/source_module.py
|
|
--- a/pungi/phases/gather/sources/source_module.py 2019-07-02 13:27:36.000000000 +0300
|
|
+++ b/pungi/phases/gather/sources/source_module.py 2020-12-03 10:30:25.037856509 +0300
|
|
@@ -38,7 +38,7 @@ class GatherSourceModule(pungi.phases.ga
|
|
|
|
compatible_arches = pungi.arch.get_compatible_arches(arch, multilib=True)
|
|
|
|
- for nsvc, mmd in variant.arch_mmds[arch].items():
|
|
+ for nsvc, mmd in variant.arch_mmds.get(arch, {}).items():
|
|
available_rpms = sum(
|
|
(
|
|
variant.nsvc_to_pkgset[nsvc].rpms_by_arch.get(a, [])
|