Commit 393d4d03 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Fix filters

A list of strings should be passed instead of a string.

Thanks to @mruwek for reporting.
parent f91895b7
......@@ -230,7 +230,7 @@ class UIApplication(CLIApplicationBase):
filters.append(DependencyFilter(self.todolist))
filters.append(RelevanceFilter())
filters += get_filter_list(p_data['filterexpr'])
filters += get_filter_list(p_data['filterexpr'].split())
return UIView(sorter, filters, self.todolist, p_data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment