From 5ba4c0a8de7380b9291a90cad683f03e2089c025 Mon Sep 17 00:00:00 2001 From: Parbhat Puri <parbhatpuri17@gmail.com> Date: Wed, 15 May 2019 13:01:43 +0000 Subject: [PATCH] fix: create submission storage instance --- opentech/apply/funds/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentech/apply/funds/views.py b/opentech/apply/funds/views.py index 8b9b7f7d3..176056e1f 100644 --- a/opentech/apply/funds/views.py +++ b/opentech/apply/funds/views.py @@ -62,7 +62,7 @@ from .tables import ( from .workflow import STAGE_CHANGE_ACTIONS, PHASES_MAPPING, review_statuses from .permissions import is_user_has_access_to_view_submission -submission_storage = get_storage_class(getattr(settings, 'PRIVATE_FILE_STORAGE', None)) +submission_storage = get_storage_class(getattr(settings, 'PRIVATE_FILE_STORAGE', None))() class BaseAdminSubmissionsTable(SingleTableMixin, FilterView): -- GitLab