FIX error message when cellvalue's type is not recognized

pull/361/head
Iván Todorovich 2019-09-06 11:34:40 +00:00 committed by kongrattapong
parent dff89ba27d
commit 5cdef5c71f
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ class ReportXlsxAbstract(models.AbstractModel):
"col_specs_section %s, column %s"
) % (__name__, col_specs_section, col)
if cell_value:
msg += _(", cellvalue %s")
msg += _(", cellvalue %s") % cell_value
raise UserError(msg)
colspan = cell_spec.get('colspan') or colspan
args_pos = [row_pos, pos]