diff --git a/plugins/callbacks/hipchat.py b/plugins/callbacks/hipchat.py index 6447a01e753..45c2e2c8197 100644 --- a/plugins/callbacks/hipchat.py +++ b/plugins/callbacks/hipchat.py @@ -138,7 +138,7 @@ class CallbackModule(object): def playbook_on_not_import_for_host(self, host, missing_file): pass - def playbook_on_play_start(self, pattern): + def playbook_on_play_start(self, name): """Display Playbook and play start messages""" # This block sends information about a playbook when it starts @@ -167,7 +167,7 @@ class CallbackModule(object): # This is where we actually say we are starting a play self.send_msg("%s: Starting play: %s" % - (self.playbook_name, pattern)) + (self.playbook_name, name)) def playbook_on_stats(self, stats): """Display info about playbook statistics""" diff --git a/plugins/callbacks/log_plays.py b/plugins/callbacks/log_plays.py index f329ce83b1c..dbe16b312c1 100644 --- a/plugins/callbacks/log_plays.py +++ b/plugins/callbacks/log_plays.py @@ -108,7 +108,7 @@ class CallbackModule(object): def playbook_on_not_import_for_host(self, host, missing_file): log(host, 'NOTIMPORTED', missing_file) - def playbook_on_play_start(self, pattern): + def playbook_on_play_start(self, name): pass def playbook_on_stats(self, stats): diff --git a/plugins/callbacks/osx_say.py b/plugins/callbacks/osx_say.py index 95a3f0d8357..174a03300f1 100644 --- a/plugins/callbacks/osx_say.py +++ b/plugins/callbacks/osx_say.py @@ -97,8 +97,8 @@ class CallbackModule(object): def playbook_on_not_import_for_host(self, host, missing_file): pass - def playbook_on_play_start(self, pattern): - say("Starting play: %s" % pattern, HAPPY_VOICE) + def playbook_on_play_start(self, name): + say("Starting play: %s" % name, HAPPY_VOICE) def playbook_on_stats(self, stats): say("Play complete", HAPPY_VOICE)