diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 0b7f2be56..18cb5463a 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-04-30 Alex Roitman + * src/plugins/Verify.py (Verify.run_tool): Typo. + 2006-04-30 Don Allingham * src/DataViews.py/_PersonView.py: don't add handles of top level objects diff --git a/gramps2/src/plugins/Verify.py b/gramps2/src/plugins/Verify.py index 15ee12a85..aae408a44 100644 --- a/gramps2/src/plugins/Verify.py +++ b/gramps2/src/plugins/Verify.py @@ -221,17 +221,17 @@ class Verify(Tool.Tool, ManagedWindow.ManagedWindow): if birth_ref: birth_handle = birth_ref.ref else: - birth_ref = None + birth_handle = None death_ref = person.get_death_ref() if death_ref: death_handle = death_ref.ref else: - death_ref = None + death_handle = None byear = self.get_year( birth_handle ) bapyear = 0 - dyear = self.get_year( birth_handle ) + dyear = self.get_year( death_handle ) buryear = 0 for event_ref in person.get_event_ref_list():