From 961648819fa03eaf657746fd8e7abd76b1ca172a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 12 May 2016 15:33:12 +0200 Subject: [PATCH] [buildinstall] Fix bad error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- pungi/phases/buildinstall.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pungi/phases/buildinstall.py b/pungi/phases/buildinstall.py index 13c81406..e69e1fc1 100644 --- a/pungi/phases/buildinstall.py +++ b/pungi/phases/buildinstall.py @@ -190,8 +190,7 @@ class BuildinstallPhase(PhaseBase): # TODO: label is not used label = "" volid = get_volid(self.compose, arch, variant, escape_spaces=False, disc_type=disc_type) - msg = 'Copying results of buildinstall' - with failable(self.compose, variant, arch, 'buildinstall', msg): + with failable(self.compose, variant, arch, 'buildinstall'): tweak_buildinstall(buildinstall_dir, os_tree, arch, variant.uid, label, volid, kickstart_file) link_boot_iso(self.compose, arch, variant)