remove .csv from default filename in List Exporter (#1428)

This commit is contained in:
Felix Rindt
2019-10-06 11:51:24 +02:00
committed by Raphael Michel
parent 82497cfb89
commit 515d8c4899

View File

@@ -111,7 +111,7 @@ class ListExporter(BaseExporter):
raise NotImplementedError() # noqa
def get_filename(self):
return 'export.csv'
return 'export'
def _render_csv(self, form_data, output_file=None, **kwargs):
if output_file: