* src/Filters/Rules/Person/_RelationshipPathBetween.py

(apply_filter): Object/handle mixup, #1090.


svn: r8612
This commit is contained in:
Alex Roitman 2007-06-20 19:20:28 +00:00
parent 96f7fb06ff
commit e515508586
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
2007-06-20 Alex Roitman <shura@gramps-project.org>
* 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 <shura@gramps-project.org>

View File

@ -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()