From e515508586b92cefa2c33fe864469348ee8e22ee Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Wed, 20 Jun 2007 19:20:28 +0000 Subject: [PATCH] * src/Filters/Rules/Person/_RelationshipPathBetween.py (apply_filter): Object/handle mixup, #1090. svn: r8612 --- ChangeLog | 2 ++ src/Filters/Rules/Person/_RelationshipPathBetween.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a12017d7b..d28e52581 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ 2007-06-20 Alex Roitman + * src/Filters/Rules/Person/_RelationshipPathBetween.py + (apply_filter): Object/handle mixup, #1090. * src/DbLoader.py (DbLoader.read_file): Properly report problem. 2007-06-19 Alex Roitman diff --git a/src/Filters/Rules/Person/_RelationshipPathBetween.py b/src/Filters/Rules/Person/_RelationshipPathBetween.py index 663b824f2..a7a06fc85 100644 --- a/src/Filters/Rules/Person/_RelationshipPathBetween.py +++ b/src/Filters/Rules/Person/_RelationshipPathBetween.py @@ -1,7 +1,7 @@ # # Gramps - a GTK+/GNOME based genealogy program # -# Copyright (C) 2002-2006 Donald N. Allingham +# Copyright (C) 2002-2007 Donald N. Allingham # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -79,7 +79,7 @@ class RelationshipPathBetween(Rule): person = self.db.get_person_from_handle(handle) if person == None: return - plist.append(person) + plist.append(handle) pmap[person.get_handle()] = rank fam_id = person.get_main_parents_family_handle()