From 0d68f5d2304ed487642bf926a53113711e819674 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 --- ChangeLog | 3 +++ src/plugins/Ancestors.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e23af2b8a..50082ee6a 100644 --- a/ChangeLog +++ b/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/src/plugins/Ancestors.py b/src/plugins/Ancestors.py index 3d3541239..b4ba87f40 100644 --- a/src/plugins/Ancestors.py +++ b/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