diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 9a9b8ed88..144f67c2c 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-07-23 Alex Roitman + * src/plugins/GraphViz.py (get_date_strings): Typo. + 2006-07-23 Brian Matherly * src/plugins/NarrativeWeb.py: fix bug for no surname (bug #265) diff --git a/gramps2/src/plugins/GraphViz.py b/gramps2/src/plugins/GraphViz.py index 4ab5104eb..64550d01e 100644 --- a/gramps2/src/plugins/GraphViz.py +++ b/gramps2/src/plugins/GraphViz.py @@ -515,7 +515,7 @@ just use iconv: birth = '' death_ref = person.get_death_ref() if death_ref: - death_event = self.database.get_event_from_handle(death_ref) + death_event = self.database.get_event_from_handle(death_ref.ref) death = self.get_event_string(death_event) else: death = ''