[FIX] web_export_view: Several things:

* Compatibility with Werkzeug 0.9.3
* Export of first one2many field works again
* Parsing of float values
This commit is contained in:
Stefan Rijnhart
2013-07-23 15:25:54 +02:00
committed by Pedro M. Baeza
parent ad89a6a3a5
commit d7276a4739
2 changed files with 7 additions and 7 deletions

View File

@@ -45,5 +45,5 @@ class ExcelExportView(ExcelExport):
% self.filename(model)),
('Content-Type', self.content_type)
],
cookies={'fileToken': int(token)}
cookies={'fileToken': token}
)