summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-06-17 20:09:02 +0000
committerZac Medico <zmedico@gentoo.org>2008-06-17 20:09:02 +0000
commite0cc9415a669e965aa95a0dab02e37dfa07f4bb4 (patch)
treee7ba5db2577a39f3fe0d5625fe7576a0d800f4c6 /pym
parenta3232d69ce897ae20bb461823afdd1f27e22dcf7 (diff)
downloadportage-e0cc9415a669e965aa95a0dab02e37dfa07f4bb4.tar.gz
portage-e0cc9415a669e965aa95a0dab02e37dfa07f4bb4.tar.bz2
portage-e0cc9415a669e965aa95a0dab02e37dfa07f4bb4.zip
Remove the rest of eblank.
svn path=/main/branches/2.1.2/; revision=10702
Diffstat (limited to 'pym')
-rw-r--r--pym/output.py1
-rw-r--r--pym/portage.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/pym/output.py b/pym/output.py
index d52c6cc55..ff2944bc2 100644
--- a/pym/output.py
+++ b/pym/output.py
@@ -132,7 +132,6 @@ codes["bg_darkyellow"] = codes["bg_brown"]
# Colors from /etc/init.d/functions.sh
codes["NORMAL"] = esc_seq + "0m"
-codes["BLANK"] = codes["lightgray"]
codes["GOOD"] = codes["green"]
codes["WARN"] = codes["yellow"]
codes["BAD"] = codes["red"]
diff --git a/pym/portage.py b/pym/portage.py
index fe0ceb904..77ce475bd 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -4462,7 +4462,7 @@ def doebuild_environment(myebuild, mydo, myroot, mysettings, debug, use_cache, m
# Allow color.map to control colors associated with einfo, ewarn, etc...
mycolors = []
- for c in ("BLANK", "GOOD", "WARN", "BAD", "HILITE", "BRACKET"):
+ for c in ("GOOD", "WARN", "BAD", "HILITE", "BRACKET"):
mycolors.append("%s=$'%s'" % (c, output.codes[c]))
mysettings["PORTAGE_COLORMAP"] = "\n".join(mycolors)