2007-11-23 Benny Malengier <benny.malengier@gramps-project.org>

* src/plugins/Check.py: fix wrong event ref (was fixed in trunk in 2007/02)



svn: r9392
This commit is contained in:
Benny Malengier 2007-11-23 22:01:42 +00:00
parent cfefb8b47d
commit 5755e456e4
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2007-11-23 Benny Malengier <benny.malengier@gramps-project.org>
* src/plugins/Check.py: fix wrong event ref (was fixed in trunk in 2007/02)
2007-11-13 Benny Malengier <benny.malengier@gramps-project.org>
* src/plugins/GraphViz.py: issue #1362, code generation should not show
open with ghostview, ..., instead show app with text/plain.

View File

@ -798,7 +798,7 @@ class CheckIntegrity:
if not event:
# The event referenced by the family
# does not exist in the database
family.get_event_list().remove(event_ref)
family.get_event_ref_list().remove(event_ref)
self.db.commit_family(family,self.trans)
self.invalid_events.append(key)
elif type(family.get_event_ref_list()) != list: