Fix missing argument

This commit is contained in:
Raphael Michel
2017-05-25 14:55:04 +02:00
parent d6e213d51a
commit 4ff1d302d9

View File

@@ -674,7 +674,7 @@ class ExportDoView(EventPermissionRequiredMixin, ExportMixin, AsyncAction, View)
if not self.exporter.form.is_valid():
messages.error(self.request, _('There was a problem processing your input. See below for error details.'))
return self.get(*args, **kwargs)
return self.get(request, *args, **kwargs)
cf = CachedFile()
cf.date = now()