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:
parent
a809b8d52c
commit
193c1924cc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user