From 263432daa1d7cbbb0dac3b1fe859cc483ab04458 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 24 Jul 2012 20:21:49 -0400 Subject: [PATCH] Changed no hosts to red. Not sure this is the right color choice, but there is no orange :) --- lib/ansible/callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/callbacks.py b/lib/ansible/callbacks.py index 1480130548..c956aa10e3 100644 --- a/lib/ansible/callbacks.py +++ b/lib/ansible/callbacks.py @@ -319,7 +319,7 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks): def on_no_hosts(self): - print stringc("no hosts matched or remaining\n", 'orange') + print stringc("no hosts matched or remaining\n", 'red') def on_async_poll(self, host, res, jid, clock):