2004-10-27 Tim Waugh <twaugh@redhat.com>

* src/plugins/Ancestors.py: Fixed typo spotted by Eero Tamminen.


svn: r3680
This commit is contained in:
Tim Waugh 2004-10-27 09:29:51 +00:00
parent 057ff4319c
commit 0d68f5d230
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2004-10-27 Tim Waugh <twaugh@redhat.com>
* src/plugins/Ancestors.py: Fixed typo spotted by Eero Tamminen.
2004-10-26 Don Allingham <dallingham@users.sourceforge.net>
* src/docgen/OpenOfficeDoc.py: fix asian font, file extension
* src/plugins/DescendReport.py: fix get_valid_year

View File

@ -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