Browse Source

Change implement the __ne__ none equality method into the ParseResult class.

pull/1020/head
Prinz23 8 years ago
committed by JackDandy
parent
commit
0311b2777d
  1. 3
      sickbeard/name_parser/parser.py

3
sickbeard/name_parser/parser.py

@ -597,6 +597,9 @@ class ParseResult(object):
self.version = version
def __ne__(self, other):
return not self.__eq__(other)
def __eq__(self, other):
if not other:
return False

Loading…
Cancel
Save