From: scarabeus Date: Thu, 18 Nov 2010 20:10:53 +0000 (-0000) Subject: Remove unused variable. X-Git-Tag: gentoolkit-0.3.0~65 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fbd409fc30ca7fe4836cb0426daedc18d7155fc0;hp=39c976412d184db422b7329e3fe74d546d08eea4;p=gentoolkit.git Remove unused variable. svn path=/trunk/gentoolkit/; revision=856 --- 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