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
This commit is contained in:
Gábor Antal 2015-11-27 17:44:26 +01:00
parent a809b8d52c
commit 193c1924cc

View File

@ -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