From 5e1982b1a2495a8c3e1dcc50df7c875af48b3224 Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Mon, 16 Jul 2007 19:22:49 +0000 Subject: [PATCH] Change all white output to bold. Bug #185530 svn path=/; revision=416 --- trunk/src/gentoolkit/pprinter.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/trunk/src/gentoolkit/pprinter.py b/trunk/src/gentoolkit/pprinter.py index 255c6d8..39665f8 100644 --- a/trunk/src/gentoolkit/pprinter.py +++ b/trunk/src/gentoolkit/pprinter.py @@ -43,7 +43,7 @@ def cpv(s): def slot(s): """Print a slot string""" - return output.white(s) + return output.bold(s) def useflag(s): """Print a USE flag strign""" @@ -65,7 +65,7 @@ def maskflag(s): def installedflag(s): """Print an installed flag string""" - return output.white(s) + return output.bold(s) def number(s): """Print a number string""" @@ -73,15 +73,15 @@ def number(s): def pkgquery(s): """Print a package query string.""" - return output.white(s) + return output.bold(s) def regexpquery(s): """Print a regular expression string""" - return output.white(s) + return output.bold(s) def path(s): """Print a file or directory path string""" - return output.white(s) + return output.bold(s) def path_symlink(s): """Print a symlink string.""" @@ -113,4 +113,4 @@ def subsection(s): def emph(s): """Print a string as emphasized.""" - return output.white(s) + return output.bold(s) -- 2.26.2