diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index a1da86333..76e74c1ad 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,5 +1,6 @@ 2004-05-16 Alex Roitman * src/plugins/RelGraph.py: Menu for family options. + * src/plugins/RelGraph.py (_get_event_label): Typo. 2004-05-15 Alex Roitman * src/plugins/RelGraph.py (_write_graph_record): Bug fixes. diff --git a/gramps2/src/plugins/RelGraph.py b/gramps2/src/plugins/RelGraph.py index cf622b850..6025c9913 100644 --- a/gramps2/src/plugins/RelGraph.py +++ b/gramps2/src/plugins/RelGraph.py @@ -718,7 +718,7 @@ def _get_event_label (self, event_id): date_obj = event.get_date_object() if date_obj.get_year_valid(): if self.JustYear: - return "%i" % date_obj.get_year_valid() + return "%i" % date_obj.get_year() else: return date_obj.get_date() elif self.PlaceCause: