2006-04-30 Alex Roitman <shura@gramps-project.org>

* src/plugins/Verify.py (Verify.run_tool): Typo.
	


svn: r6503
This commit is contained in:
Alex Roitman 2006-05-01 05:55:14 +00:00
parent 2e49a8ab34
commit bb9f7dc74d
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2006-04-30 Alex Roitman <shura@gramps-project.org>
* src/plugins/Verify.py (Verify.run_tool): Typo.
2006-04-30 Don Allingham <don@gramps-project.org>
* src/DataViews.py/_PersonView.py: don't add handles of top level
objects

View File

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