From f5c87ae46a78351011fae9534bbe94104b9a365c Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Wed, 20 Jun 2007 19:21:26 +0000 Subject: [PATCH] 2007-06-20 Alex Roitman * src/Filters/Rules/Person/_RelationshipPathBetween.py (apply_filter): Object/handle mixup, #1090. svn: r8613 --- ChangeLog | 4 ++++ src/Filters/Rules/Person/_RelationshipPathBetween.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index aecfd8712..33aaafdef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-06-20 Alex Roitman + * src/Filters/Rules/Person/_RelationshipPathBetween.py + (apply_filter): Object/handle mixup, #1090. + 2007-06-19 Alex Roitman * data/grampsxml.dtd: Typo. * src/DbManager.py (check_in): Add -f option to ci to force 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()