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

@@ -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