Update
svn: r8599
This commit is contained in:
parent
167641654c
commit
a189222ede
@ -213,7 +213,8 @@ class FilterEditor(ManagedWindow.ManagedWindow):
|
||||
filters = self.filterdb.get_filters(space)
|
||||
|
||||
# Leave only those that are not in the removal set
|
||||
filters = [the_filter in filters if the_filter not in filter_set]
|
||||
filters = [the_filter for the_filter in filters
|
||||
if the_filter not in filter_set]
|
||||
|
||||
def _find_dependent_filters(self,space,gfilter,filter_set=set()):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user