From f2d4845590acb2f355e492cf414a253b1ca6e24b Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Wed, 27 Oct 2004 09:29:51 +0000 Subject: [PATCH] 2004-10-27 Tim Waugh * src/plugins/Ancestors.py: Fixed typo spotted by Eero Tamminen. svn: r3680 --- gramps2/ChangeLog | 3 +++ gramps2/src/plugins/Ancestors.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index e23af2b8a..50082ee6a 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2004-10-27 Tim Waugh + * src/plugins/Ancestors.py: Fixed typo spotted by Eero Tamminen. + 2004-10-26 Don Allingham * src/docgen/OpenOfficeDoc.py: fix asian font, file extension * src/plugins/DescendReport.py: fix get_valid_year diff --git a/gramps2/src/plugins/Ancestors.py b/gramps2/src/plugins/Ancestors.py index 3d3541239..b4ba87f40 100644 --- a/gramps2/src/plugins/Ancestors.py +++ b/gramps2/src/plugins/Ancestors.py @@ -506,7 +506,7 @@ class ComprehensiveAncestorsReport (Report.Report): death = self.database.get_event_from_handle(death_handle) date = death.get_date () if date: - ret += _(" d. %(date)s)") % {'date': date} + ret += _(" d. %(date)s") % {'date': date} ret += self.cite_sources (death.get_source_references ()) return ret