diff --git a/bin/fail2ban-regex b/bin/fail2ban-regex index cfaa4a89..ccdb7eac 100755 --- a/bin/fail2ban-regex +++ b/bin/fail2ban-regex @@ -438,10 +438,10 @@ class Fail2banRegex(object): if self._filter.dateDetector is not None: print "\nDate template hits:" out = [] - for template in self._filter.dateDetector.getTemplates(): - if self._verbose or template.getHits(): + for template in self._filter.dateDetector.templates: + if self._verbose or template.hits: out.append("[%d] %s" % ( - template.getHits(), template.getName())) + template.hits, template.name)) pprint_list(out, "[# of hits] date format") print "\nLines: %s" % self._line_stats