From 09afb5899586a8b23988266d3ef626a658ab9b15 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 23 Dec 2004 01:01:06 +0000 Subject: [PATCH] Update svn: r3831 --- gramps2/src/plugins/FtmStyleDescendants.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gramps2/src/plugins/FtmStyleDescendants.py b/gramps2/src/plugins/FtmStyleDescendants.py index 52fbfa428..39d82f38a 100644 --- a/gramps2/src/plugins/FtmStyleDescendants.py +++ b/gramps2/src/plugins/FtmStyleDescendants.py @@ -20,10 +20,8 @@ # $Id$ -# # Written by Alex Roitman, largely based on the FtmStyleAncestors.py # report by Don Allingham -# #------------------------------------------------------------------------ # @@ -31,7 +29,6 @@ # #------------------------------------------------------------------------ import os -import string import cStringIO from gettext import gettext as _ @@ -744,7 +741,7 @@ class FtmDescendantReport(Report.Report): self.doc.start_cell('FTD-Normal') self.doc.start_paragraph('FTD-Child-Num') - self.doc.write_text("%s." % string.lower(Utils.roman(child_index))) + self.doc.write_text("%s." % Utils.roman(child_index).lower()) self.doc.end_paragraph() self.doc.end_cell()