2007-06-20 Alex Roitman <shura@gramps-project.org>

* src/Filters/Rules/Person/_RelationshipPathBetween.py
	(apply_filter): Object/handle mixup, #1090.



svn: r8613
This commit is contained in:
Alex Roitman 2007-06-20 19:21:26 +00:00
parent 72b74e4ae2
commit f5c87ae46a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-06-20 Alex Roitman <shura@gramps-project.org>
* src/Filters/Rules/Person/_RelationshipPathBetween.py
(apply_filter): Object/handle mixup, #1090.
2007-06-19 Alex Roitman <shura@gramps-project.org>
* data/grampsxml.dtd: Typo.
* src/DbManager.py (check_in): Add -f option to ci to force

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