From 138d1076f51765e5f4655954794a85f61e74b13e Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Mon, 4 Jul 2022 21:24:35 -0700 Subject: [PATCH] correct treeinfo for ks --- iso/empanadas/empanadas/util/dnf_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iso/empanadas/empanadas/util/dnf_utils.py b/iso/empanadas/empanadas/util/dnf_utils.py index 336e782..09f527c 100644 --- a/iso/empanadas/empanadas/util/dnf_utils.py +++ b/iso/empanadas/empanadas/util/dnf_utils.py @@ -1279,7 +1279,7 @@ class RepoSync: except Exception as e: self.log.error( '[' + Color.BOLD + Color.RED + 'FAIL' + Color.END + '] ' + - 'There was an error writing treeinfo.' + 'There was an error writing os treeinfo.' ) self.log.error(e) @@ -1288,7 +1288,7 @@ class RepoSync: ksdata = { 'arch': a, 'variant': v, - 'variant_path': image, + 'variant_path': ksimage, 'checksum': self.checksum, 'distname': self.distname, 'fullname': self.fullname, @@ -1303,7 +1303,7 @@ class RepoSync: except Exception as e: self.log.error( '[' + Color.BOLD + Color.RED + 'FAIL' + Color.END + '] ' + - 'There was an error writing treeinfo.' + 'There was an error writing kickstart treeinfo.' ) self.log.error(e)