From eac6184104c9377debfab2f3993b5e1330861051 Mon Sep 17 00:00:00 2001 From: Laurent Mignon Date: Tue, 4 Oct 2016 09:50:16 +0200 Subject: [PATCH] Remove unicode string --- report_py3o/models/py3o_template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/report_py3o/models/py3o_template.py b/report_py3o/models/py3o_template.py index 7281f333..5f46179d 100644 --- a/report_py3o/models/py3o_template.py +++ b/report_py3o/models/py3o_template.py @@ -11,8 +11,8 @@ class Py3oTemplate(models.Model): py3o_template_data = fields.Binary("LibreOffice template") filetype = fields.Selection( selection=[ - ('odt', u"ODF Text Document"), - ('ods', u"ODF Spreadsheet"), + ('odt', "ODF Text Document"), + ('ods', "ODF Spreadsheet"), ], string="LibreOffice Template File Type", required=True,