svn: r3831
This commit is contained in:
Alex Roitman 2004-12-23 01:01:06 +00:00
parent b4906a62c6
commit 09afb58995

View File

@ -20,10 +20,8 @@
# $Id$ # $Id$
#
# Written by Alex Roitman, largely based on the FtmStyleAncestors.py # Written by Alex Roitman, largely based on the FtmStyleAncestors.py
# report by Don Allingham # report by Don Allingham
#
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -31,7 +29,6 @@
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
import os import os
import string
import cStringIO import cStringIO
from gettext import gettext as _ from gettext import gettext as _
@ -744,7 +741,7 @@ class FtmDescendantReport(Report.Report):
self.doc.start_cell('FTD-Normal') self.doc.start_cell('FTD-Normal')
self.doc.start_paragraph('FTD-Child-Num') 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_paragraph()
self.doc.end_cell() self.doc.end_cell()