From 4ee06a44175b1eb315a4d119a1a797e362029b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Antal?= Date: Fri, 27 Nov 2015 17:21:38 +0100 Subject: [PATCH] Added missing super call in DefaultApplier's init Added the missing super() call in the DefaultApplier class __init__() method, as it was requested. Change-Id: I58be9671e9635d800d63480043e2e4cd752d45fd Closes-Bug: #1520524 --- watcher/applier/framework/default_applier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/watcher/applier/framework/default_applier.py b/watcher/applier/framework/default_applier.py index cb4c0baef..2421c0454 100644 --- a/watcher/applier/framework/default_applier.py +++ b/watcher/applier/framework/default_applier.py @@ -24,6 +24,7 @@ from watcher.objects import ActionPlan class DefaultApplier(Applier): def __init__(self, manager_applier, context): + super(DefaultApplier, self).__init__() self.manager_applier = manager_applier self.context = context self.executor = CommandExecutor(manager_applier, context)