diff --git a/ChangeLog b/ChangeLog index 44ca6246a..24863bed8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ 2003-09-02 Tim Waugh + * src/plugins/GraphViz.py: Fixed typo. * src/gramps_main.py: Fixed start-up view when family view style is the default. diff --git a/src/plugins/GraphViz.py b/src/plugins/GraphViz.py index 49e49daf1..3d20c31dd 100644 --- a/src/plugins/GraphViz.py +++ b/src/plugins/GraphViz.py @@ -487,7 +487,7 @@ def dump_index(person_list,file,includedates,includeurl,colorize, if do != None: if do.getYearValid(): if just_year: - marriage = '%i' % date.getYear() + marriage = '%i' % do.getYear() else: marriage = m.getDate() file.write('fontname="%s", label="%s"];\n' % (font,marriage))