* src/BaseDoc.py: don't check for init on table or cell addition

* src/Report.py: Call doc.init() before write_report


svn: r3947
This commit is contained in:
Don Allingham
2005-01-24 00:16:33 +00:00
parent 17fef1ebc6
commit e70e6c6e68
3 changed files with 5 additions and 2 deletions

View File

@ -1206,7 +1206,6 @@ class BaseDoc:
@param name: name of the table style
@param style: TableStyle instance to be added
"""
assert(self.init_called==False)
self.table_styles[name] = TableStyle(style)
def add_cell_style(self,name,style):
@ -1216,7 +1215,6 @@ class BaseDoc:
@param name: name of the table cell style
@param style: TableCellStyle instance to be added
"""
assert(self.init_called==False)
self.cell_styles[name] = TableCellStyle(style)
def open(self,filename):