manager: use get_table_data() to get queryset in ExportMixin (fixes #9414)

This commit is contained in:
Benjamin Dauvergne 2018-12-18 16:57:01 +01:00
parent fa28c50edc
commit c52e23b5a7
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ class ExportMixin(object):
return self.resource_class()
def get_data(self):
qs = self.get_queryset()
qs = self.get_table_data()
return batch_queryset(qs)
def get_dataset(self):