mirror of https://github.com/fail2ban/fail2ban
code review: added endpos to found tuple, just to be safe by unpack
parent
58717c1854
commit
a2cf34a64e
|
@ -359,7 +359,7 @@ class DateDetector(object):
|
||||||
if not match:
|
if not match:
|
||||||
self.__lastTemplIdx = 0x7fffffff
|
self.__lastTemplIdx = 0x7fffffff
|
||||||
logSys.log(logLevel, " search template (%i) ...", len(self.__templates))
|
logSys.log(logLevel, " search template (%i) ...", len(self.__templates))
|
||||||
found = None, 0x7fffffff, -1
|
found = None, 0x7fffffff, 0x7fffffff, -1
|
||||||
i = 0
|
i = 0
|
||||||
for ddtempl in self.__templates:
|
for ddtempl in self.__templates:
|
||||||
if logSys.getEffectiveLevel() <= logLevel-1:
|
if logSys.getEffectiveLevel() <= logLevel-1:
|
||||||
|
|
Loading…
Reference in New Issue