From c9b5830a37d50257d8a1435761ce1781f30e4d97 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 5 Jan 2016 18:01:25 +0000 Subject: [PATCH] Fix bug introduced in pylint tidy up --- gramps/gen/lib/person.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/lib/person.py b/gramps/gen/lib/person.py index e2270f6c2..c157b6a9e 100644 --- a/gramps/gen/lib/person.py +++ b/gramps/gen/lib/person.py @@ -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): """