From c7183a14a50b3e0603f5076b2719e6f043db7a4c Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 27 Dec 2015 18:03:23 -0800 Subject: [PATCH] Tweak lint script colors for travis --- script/lint | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/lint b/script/lint index 1cf877e86fa..7e742f801a8 100755 --- a/script/lint +++ b/script/lint @@ -6,13 +6,13 @@ echo "Checking style with flake8..." tput setaf 1 flake8 --exclude www_static homeassistant FLAKE8_STATUS=$? -tput sgr0 +tput setaf 7; tput sgr0 echo "Checking style with pylint..." tput setaf 1 -tput setaf 1; pylint homeassistant +pylint homeassistant PYLINT_STATUS=$? -tput sgr0 +tput setaf 7; tput sgr0 if [ $FLAKE8_STATUS -eq 0 ] then