From 71616dc38e1b7f24b1193951d72649cbb438cce9 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 15 Dec 2007 03:02:33 +0000 Subject: Replace hardcoded green, yellow, and red with GOOD, WARN, and BAD. svn path=/main/trunk/; revision=8927 --- bin/repoman | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/repoman b/bin/repoman index 997c3539a..dcd586559 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1698,15 +1698,15 @@ for x in qacats: continue f.add_literal_data(" "+x.ljust(30)) if stats[x]==0: - f.push_style("green") + f.push_style("GOOD") f.add_literal_data(str(stats[x])) f.pop_style() f.add_line_break() continue elif x in qawarnings: - f.push_style("yellow") + f.push_style("WARN") else: - f.push_style("red") + f.push_style("BAD") f.add_literal_data(str(stats[x])) f.pop_style() f.add_line_break() -- cgit v1.2.3-1-g7c22