From 193c1924cc29cd20e6cc37294d5322c00ee5e634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Antal?= Date: Fri, 27 Nov 2015 17:44:26 +0100 Subject: [PATCH] Added LaunchActionPlanCommand's init super call Added the missing super() call in the LaunchActionPlanCommand class __init__() method, as it was requested. Change-Id: I6d8cc7880b1e979f94acd3fdd84e3f6d1a90a032 Closes-Bug: #1520521 --- watcher/applier/framework/messaging/launch_action_plan.py | 1 + 1 file changed, 1 insertion(+) diff --git a/watcher/applier/framework/messaging/launch_action_plan.py b/watcher/applier/framework/messaging/launch_action_plan.py index 3548069aa..3b64481a3 100644 --- a/watcher/applier/framework/messaging/launch_action_plan.py +++ b/watcher/applier/framework/messaging/launch_action_plan.py @@ -30,6 +30,7 @@ LOG = log.getLogger(__name__) class LaunchActionPlanCommand(ApplierCommand): def __init__(self, context, manager_applier, action_plan_uuid): + super(LaunchActionPlanCommand, self).__init__() self.ctx = context self.action_plan_uuid = action_plan_uuid self.manager_applier = manager_applier