Merge "UnboundLocalError on message-list"

This commit is contained in:
Jenkins 2017-07-07 19:42:05 +00:00 committed by Gerrit Code Review
commit eaee84097a
1 changed files with 3 additions and 1 deletions

View File

@ -151,7 +151,9 @@ def extract_filters(args):
(key, value) = f.split('=', 1)
if value.startswith('{') and value.endswith('}'):
value = _build_internal_dict(value[1:-1])
filters[key] = value
filters[key] = value
else:
print("WARNING: Ignoring the filter %s while showing result." % f)
return filters