svn: r8601
This commit is contained in:
Alex Roitman 2007-06-20 01:21:42 +00:00
parent a845b80564
commit ee1c67367c

View File

@ -213,7 +213,7 @@ class FilterEditor(ManagedWindow.ManagedWindow):
filters = self.filterdb.get_filters(space)
# Leave only those that are not in the removal set
filters = [the_filter for the_filter in filters
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()):