diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-05-06 01:34:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-05-06 01:34:39 +0000 |
commit | 04e49b94eb44c62b966e4ed78a9ebbda6b09562d (patch) | |
tree | 154ec5ba7f009fd48cfa70d64725ee78cca66107 | |
parent | d79d046ffe39504f0b67c90da083a241ce1a6946 (diff) | |
download | portage-04e49b94eb44c62b966e4ed78a9ebbda6b09562d.tar.gz portage-04e49b94eb44c62b966e4ed78a9ebbda6b09562d.tar.bz2 portage-04e49b94eb44c62b966e4ed78a9ebbda6b09562d.zip |
Make satisfied blockers "darkblue" by default.
svn path=/main/trunk/; revision=10218
-rw-r--r-- | man/color.map.5 | 2 | ||||
-rw-r--r-- | pym/portage/output.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/man/color.map.5 b/man/color.map.5 index e7eeb32df..ceae85723 100644 --- a/man/color.map.5 +++ b/man/color.map.5 @@ -33,7 +33,7 @@ Defines color used for numbers indicating merge progress. \fBPKG_BLOCKER\fR = \fI"red"\fR Defines color used for unsatisfied blockers. .TP -\fBPKG_BLOCKER_SATSIFIED\fR = \fI"green"\fR +\fBPKG_BLOCKER_SATSIFIED\fR = \fI"darkblue"\fR Defines color used for satisfied blockers. .TP \fBPKG_MERGE\fR = \fI"darkgreen"\fR diff --git a/pym/portage/output.py b/pym/portage/output.py index 1562485bd..0cc6fda2c 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -149,7 +149,7 @@ codes["UNMERGE_WARN"] = codes["red"] codes["SECURITY_WARN"] = codes["red"] codes["MERGE_LIST_PROGRESS"] = codes["yellow"] codes["PKG_BLOCKER"] = codes["red"] -codes["PKG_BLOCKER_SATISFIED"] = codes["green"] +codes["PKG_BLOCKER_SATISFIED"] = codes["darkblue"] codes["PKG_MERGE"] = codes["darkgreen"] codes["PKG_MERGE_SYSTEM"] = codes["darkgreen"] codes["PKG_MERGE_WORLD"] = codes["green"] |