From: Zac Medico Date: Fri, 19 Oct 2007 15:17:16 +0000 (-0000) Subject: The ERROR color code is currently undefined, so make eerror X-Git-Tag: v2.2_pre1~594 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=46769556f52b1b2b2db4b039620819b3a3618235;p=portage.git The ERROR color code is currently undefined, so make eerror use BAD like the bash version does. svn path=/main/trunk/; revision=8177 --- diff --git a/pym/portage/elog/messages.py b/pym/portage/elog/messages.py index e90080062..888341af5 100644 --- a/pym/portage/elog/messages.py +++ b/pym/portage/elog/messages.py @@ -74,7 +74,7 @@ _functions = { "einfo": ("INFO", "GOOD"), "elog": ("LOG", "GOOD"), "ewarn": ("WARN", "WARN"), "eqawarn": ("QA", "WARN"), - "eerror": ("ERROR", "ERROR"), + "eerror": ("ERROR", "BAD"), } def _make_msgfunction(level, color):