From 1575ed28ea0ab8e49f08b098fb327497e4559aeb Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Mon, 27 Mar 2017 15:28:18 +0200 Subject: [PATCH] Save modules metadata as full yaml object Signed-off-by: Jan Kaluza --- pungi/phases/createrepo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/createrepo.py b/pungi/phases/createrepo.py index 9d580363..6468229c 100644 --- a/pungi/phases/createrepo.py +++ b/pungi/phases/createrepo.py @@ -186,7 +186,7 @@ def create_variant_repo(compose, arch, variant, pkg_type): import yaml modules = {"modules": []} for mmd in variant.mmds: - modules["modules"].append(mmd.dumps()) + modules["modules"].append(yaml.safe_load(mmd.dumps())) tmp_dir = compose.mkdtemp(prefix="pungi_") modules_path = os.path.join(tmp_dir, "modules.yaml") with open(modules_path, "w") as outfile: