fix when running command line report other then html and it would try and fail to set css filename on e.g. pdf doc generator

svn: r12933
This commit is contained in:
Raphael Ackermann 2009-08-09 17:01:52 +00:00
parent 778cc935e9
commit ce53145dfe

View File

@ -408,7 +408,7 @@ def cl_report(database, name, category, report_class, options_class,
clr.option_class.handler.doc = clr.format(
clr.selected_style,
PaperStyle(clr.paper,clr.orien))
if clr.css_filename is not None:
if clr.css_filename is not None and hasattr(clr.option_class.handler.doc, 'set_css_filename'):
clr.option_class.handler.doc.set_css_filename(clr.css_filename)
MyReport = report_class(database, clr.option_class)
MyReport.doc.init()