svn: r8599
This commit is contained in:
Alex Roitman 2007-06-20 01:17:12 +00:00
parent 167641654c
commit a189222ede

View File

@ -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()):
"""