From 94f730a17ab467b0160a5a679c754ab30a4e8a6b Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Tue, 2 Sep 2003 21:50:39 +0000 Subject: [PATCH] 2003-09-02 Tim Waugh * src/plugins/GraphViz.py: Fixed typo. svn: r2083 --- gramps2/ChangeLog | 1 + gramps2/src/plugins/GraphViz.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 44ca6246a..24863bed8 100644 --- a/gramps2/ChangeLog +++ b/gramps2/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/gramps2/src/plugins/GraphViz.py b/gramps2/src/plugins/GraphViz.py index 49e49daf1..3d20c31dd 100644 --- a/gramps2/src/plugins/GraphViz.py +++ b/gramps2/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))