Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 304125 | Differences between
and this patch

Collapse All | Expand All

(-)a/pym/gentoolkit/pprinter.py (-2 / +1 lines)
Lines 116-122 def subsection(string): Link Here
116
116
117
def useflag(string, enabled=True):
117
def useflag(string, enabled=True):
118
	"""Returns a USE flag string."""
118
	"""Returns a USE flag string."""
119
	return output.blue(string) if enabled else output.red(string)
119
	return output.red(string) if enabled else output.blue(string)
120
120
121
def keyword(string, stable=True, hard_masked=False):
121
def keyword(string, stable=True, hard_masked=False):
122
	"""Returns a keyword string."""
122
	"""Returns a keyword string."""
123
- 

Return to bug 304125