commit: e4dda3ef193b109f30051f5a116158dfe23922bb Author: Paul Varner <fuzzyray <AT> gentoo <DOT> org> AuthorDate: Wed Apr 6 17:21:32 2016 +0000 Commit: Paul Varner <fuzzyray <AT> gentoo <DOT> org> CommitDate: Wed Apr 6 17:21:32 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=e4dda3ef
eshowkw: Fix previous commit to not always turn on prefix Mistakenly was checking highlight_arch instead of opts.arch to see if any architectures were specified. This had the effect of always enabling the prefix architectures. pym/gentoolkit/eshowkw/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/eshowkw/__init__.py b/pym/gentoolkit/eshowkw/__init__.py index c00d7cb..ded166d 100644 --- a/pym/gentoolkit/eshowkw/__init__.py +++ b/pym/gentoolkit/eshowkw/__init__.py @@ -102,7 +102,7 @@ def main(argv, indirect = False): porto.nocolor() # Imply prefix if user specified any architectures (Bug 578496) - if len(highlight_arch) > 0: + if len(opts.arch) > 0: prefix = True keywords = keywords_header(prefix, highlight_arch, order)