From 53f20d7d0fd8496e622a77c4e7e93f0159e84300 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 --- ChangeLog | 1 + src/plugins/GraphViz.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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))