mirror of https://github.com/fail2ban/fail2ban
BF: Ticket compared to non-Ticket type returns False
parent
5d2a03e852
commit
1990eeae64
|
@ -53,10 +53,13 @@ class Ticket:
|
||||||
return str(self)
|
return str(self)
|
||||||
|
|
||||||
def __eq__(self, other):
|
def __eq__(self, other):
|
||||||
return self.__ip == other.__ip and \
|
try:
|
||||||
|
return self.__ip == other.__ip and \
|
||||||
round(self.__time,2) == round(other.__time,2) and \
|
round(self.__time,2) == round(other.__time,2) and \
|
||||||
self.__attempt == other.__attempt and \
|
self.__attempt == other.__attempt and \
|
||||||
self.__matches == other.__matches
|
self.__matches == other.__matches
|
||||||
|
except AttributeError:
|
||||||
|
return False
|
||||||
|
|
||||||
def setIP(self, value):
|
def setIP(self, value):
|
||||||
if isinstance(value, basestring):
|
if isinstance(value, basestring):
|
||||||
|
|
Loading…
Reference in New Issue