fix localized set options in callbacks

signature changed but callbacks overriding it were not updated

fixes #33006
This commit is contained in:
Brian Coca 2017-11-17 12:27:32 -05:00 committed by Brian Coca
parent 84117e57ba
commit 53cbc9f6ee
4 changed files with 8 additions and 9 deletions

View file

@ -119,9 +119,9 @@ class CallbackModule(CallbackBase):
super(CallbackModule, self).__init__()
def set_options(self, options):
def set_options(self, task_keys=None, var_options=None, direct=None):
super(CallbackModule, self).set_options(options)
super(CallbackModule, self).set_options(task_keys=task_keys, var_options=var_options, direct=direct)
self.sort_order = self._plugin_options['sort_order']
if self.sort_order is not None: