summaryrefslogtreecommitdiffstats
path: root/pym/elog_modules/mod_echo.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/elog_modules/mod_echo.py')
-rw-r--r--pym/elog_modules/mod_echo.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/elog_modules/mod_echo.py b/pym/elog_modules/mod_echo.py
index c3041ae81..5b13c924f 100644
--- a/pym/elog_modules/mod_echo.py
+++ b/pym/elog_modules/mod_echo.py
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-from output import EOutput
+from output import EOutput, colorize
from portage_const import EBUILD_PHASES
_items = []
@@ -22,7 +22,8 @@ def finalize(mysettings=None):
if mysettings["ROOT"] != "/":
root_msg = " merged to %s" % mysettings["ROOT"]
print
- printer.einfo("Messages for package %s%s:" % (key, root_msg))
+ printer.einfo("Messages for package %s%s:" % \
+ (colorize("INFORM", key), root_msg))
print
for phase in EBUILD_PHASES:
if phase not in logentries: