From 522c3feab977a1a4d42d2ddc667a0a993d70edea Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 22 Apr 2015 23:10:46 -0400 Subject: [PATCH] made error color red from bright red --- v2/ansible/utils/display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/ansible/utils/display.py b/v2/ansible/utils/display.py index 4a41974d939..d5b6ad71a93 100644 --- a/v2/ansible/utils/display.py +++ b/v2/ansible/utils/display.py @@ -137,6 +137,6 @@ class Display: wrapped = textwrap.wrap(new_msg, 79) new_msg = "\n".join(wrapped) + "\n" if new_msg not in self._errors: - self.display(new_msg, color='bright red', stderr=True) + self.display(new_msg, color='red', stderr=True) self._errors[new_msg] = 1