Pass host to runner_on_file_diff callback

pull/4420/head
Andrey Shorin 2013-10-02 19:02:57 +04:00 committed by Michael DeHaan
parent f6c3dce497
commit 35457b67f5
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ class DefaultRunnerCallbacks(object):
call_callback_module('runner_on_async_failed', host, res, jid) call_callback_module('runner_on_async_failed', host, res, jid)
def on_file_diff(self, host, diff): def on_file_diff(self, host, diff):
call_callback_module('runner_on_file_diff', diff) call_callback_module('runner_on_file_diff', host, diff)
######################################################################## ########################################################################