bitbake: toaster: fix typo which prevents filters from working

'k' was replaced by 'key' at some point but not fixed in the
body of the loop. This caused a failure when the the query
was constructed for a filtered queryset, due to the variable
not being defined.

(Bitbake rev: 37fb9a364e645baadda30cc74a18baa565f39857)

Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Elliot Smith 2016-06-07 16:29:35 +01:00 committed by Richard Purdie
parent ef72321fe4
commit de3984ccdb
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ def _get_filtering_query(filter_string):
or_values = kv[1].split(OR_VALUE_SEPARATOR)
query = None
for key, val in zip(or_keys, or_values):
x = __get_q_for_val(k, val)
x = __get_q_for_val(key, val)
query = query | x if query else x
and_query = and_query & query if and_query else query