summaryrefslogtreecommitdiff
path: root/lib/ansible/playbook/handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/playbook/handler.py')
-rw-r--r--lib/ansible/playbook/handler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/ansible/playbook/handler.py b/lib/ansible/playbook/handler.py
index 2f283981..68970b4f 100644
--- a/lib/ansible/playbook/handler.py
+++ b/lib/ansible/playbook/handler.py
@@ -53,9 +53,6 @@ class Handler(Task):
def remove_host(self, host):
self.notified_hosts = [h for h in self.notified_hosts if h != host]
- def clear_hosts(self):
- self.notified_hosts = []
-
def is_host_notified(self, host):
return host in self.notified_hosts