summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2007-07-16 19:22:49 +0000
committerfuzzyray <fuzzyray@gentoo.org>2007-07-16 19:22:49 +0000
commit5e1982b1a2495a8c3e1dcc50df7c875af48b3224 (patch)
tree96fafd9386fb14a416a631ec5c95988e42650544
parent8e97cb8f8392d34178a4145a528c38875fb5ed35 (diff)
downloadgentoolkit-5e1982b1a2495a8c3e1dcc50df7c875af48b3224.tar.gz
Change all white output to bold. Bug #185530
svn path=/; revision=416
-rw-r--r--trunk/src/gentoolkit/pprinter.py12
1 files 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)