Fixed bug when merging tallies with more than two filters

This commit is contained in:
wbinventor@gmail.com 2016-02-12 18:20:38 -05:00
parent 1cb7ef8f1c
commit db48ed6fb7

View file

@ -699,8 +699,8 @@ class Tally(object):
return False
# Look to see if all filters are the same, or one or more can be merged
merge_filters = False
for filter1 in self.filters:
merge_filters = False
mergeable_filter = False
for filter2 in other.filters: