FIX returned args with reverse()

This commit is contained in:
David Beal
2017-11-06 10:21:39 +01:00
parent 3a71748b8d
commit 8b069d314e
3 changed files with 2 additions and 9 deletions

View File

@@ -1,5 +1 @@
# coding: utf-8
# © 2017 David BEAL @ Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import controllers

View File

@@ -1,5 +1 @@
# coding: utf-8
# © 2017 David BEAL @ Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import export

View File

@@ -21,4 +21,5 @@ class Export_(Export):
"""
response = super(Export_, self).formats()
# put xls, before csv
return [response[1], response[0]]
response.reverse()
return response