BF: Ticket compared to non-Ticket type returns False

pull/519/head
Daniel Black 11 years ago
parent 5d2a03e852
commit 1990eeae64

@ -53,10 +53,13 @@ class Ticket:
return str(self)
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 \
self.__attempt == other.__attempt and \
self.__matches == other.__matches
except AttributeError:
return False
def setIP(self, value):
if isinstance(value, basestring):

Loading…
Cancel
Save