From 439f6562369f38e9d4e5e948a8fe0ae97db792d2 Mon Sep 17 00:00:00 2001 From: dbr Date: Sun, 20 Apr 2008 00:50:28 +0930 Subject: [PATCH] Accidently set colours for seasons with missing episodes to the same colours as valid seasons. It is now red. --- checkTvEps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkTvEps.py b/checkTvEps.py index d46d656..046eba8 100755 --- a/checkTvEps.py +++ b/checkTvEps.py @@ -192,7 +192,7 @@ if valid.__len__() > 0: if missing_eps.__len__() == 0: cur_colour = "blue" else: - cur_colour = "blue" + cur_colour = "red" # Print season title in above colour. print "\t",colour("Season " + str(seas),colour=cur_colour)