Fix bug introduced in pylint tidy up

This commit is contained in:
Nick Hall 2016-01-05 18:01:25 +00:00
parent 27e79a3e76
commit c9b5830a37

View File

@ -113,7 +113,7 @@ class Person(CitationBase, NoteBase, AttributeBase, MediaBase,
return isinstance(other, Person) and self.handle == other.handle
def __ne__(self, other):
return self != other
return not self == other
def serialize(self):
"""