[FIX] missing unicode in format string

fixes #244
pull/246/head
Stéphane Bidoul (ACSONE) 2016-10-19 22:31:19 +02:00 committed by GitHub
parent 7289915002
commit 06ae71e79f
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class MisBuilderXlsx(ReportXlsx):
style_obj = self.env['mis.report.style']
# create worksheet
report_name = '{} - {}'.format(
report_name = u'{} - {}'.format(
objects[0].name, objects[0].company_id.name)
sheet = workbook.add_worksheet(report_name[:31])
row_pos = 0