Merge "Added missing super call in DefaultApplier's init"

This commit is contained in:
Jenkins 2015-11-27 16:36:11 +00:00 committed by Gerrit Code Review
commit a809b8d52c

View File

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