From 057751381a59af105568b3454e7b83dd9d514be9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Fri, 11 May 2018 10:50:44 +0200 Subject: [PATCH] createiso: Remove useless method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We call the parent, call a method without side effects and return... Signed-off-by: Lubomír Sedlář --- pungi/phases/createiso.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pungi/phases/createiso.py b/pungi/phases/createiso.py index 736ed060..6e7a053c 100644 --- a/pungi/phases/createiso.py +++ b/pungi/phases/createiso.py @@ -160,11 +160,6 @@ class CreateisoPhase(PhaseLoggerMixin, PhaseBase): self.pool.start() - def stop(self, *args, **kwargs): - PhaseBase.stop(self, *args, **kwargs) - if self.skip(): - return - class CreateIsoThread(WorkerThread): def fail(self, compose, cmd, variant, arch):