From: Zac Medico Date: Sat, 15 Dec 2007 03:02:33 +0000 (-0000) Subject: Replace hardcoded green, yellow, and red with GOOD, WARN, and BAD. X-Git-Tag: v2.2_pre1~177 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=71616dc38e1b7f24b1193951d72649cbb438cce9;p=portage.git Replace hardcoded green, yellow, and red with GOOD, WARN, and BAD. svn path=/main/trunk/; revision=8927 --- 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()