From 290f8f654040eec5891b574e61860e930cc25879 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 2 Dec 2015 13:00:06 -0600 Subject: [PATCH] indentation fixs correcting dvd creation getting the commands together to run the iso creation process was incorrectly moved when jigdo creation was made optional, patch fixes https://pagure.io/pungi/issue/77 Signed-off-by: Dennis Gilmore --- pungi/phases/createiso.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pungi/phases/createiso.py b/pungi/phases/createiso.py index 4341d32a..098194c6 100644 --- a/pungi/phases/createiso.py +++ b/pungi/phases/createiso.py @@ -175,8 +175,8 @@ class CreateisoPhase(PhaseBase): jigdo_cmd = " ".join([pipes.quote(i) for i in jigdo_cmd]) cmd["cmd"].append(jigdo_cmd) - cmd["cmd"] = " && ".join(cmd["cmd"]) - commands.append(cmd) + cmd["cmd"] = " && ".join(cmd["cmd"]) + commands.append(cmd) self.compose.notifier.send('createiso-targets', deliverables=deliverables)