aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pym/gentoolkit/eshowkw/keywords_content.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/gentoolkit/eshowkw/keywords_content.py b/pym/gentoolkit/eshowkw/keywords_content.py
index 7f82026..530e3f6 100644
--- a/pym/gentoolkit/eshowkw/keywords_content.py
+++ b/pym/gentoolkit/eshowkw/keywords_content.py
@@ -195,7 +195,6 @@ class keywords_content:
# -* -> red *
"""
keys = [ '~%s' % arch, '-%s' % arch, '%s' % arch, '-*' ]
- nocolor_values = [ '~', '-', '+', '*' ]
values = [
colorize('darkyellow', '~'),
colorize('darkred', '-'),
@@ -205,7 +204,7 @@ class keywords_content:
# check what keyword we have
# here we cant just append space because it would get stripped later
char = colorize('darkgray','o')
- for k, v, n in zip(keys, values, nocolor_values):
+ for k, v in zip(keys, values):
if k in keywords:
char = v
break