From eaa50ea4cbf067319b524de17ef2efc020f9fa90 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Thu, 9 Aug 2018 17:33:55 +0100 Subject: [PATCH] fixup! Allow configuration of the private bucket on s3 --- opentech/apply/funds/models/submissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentech/apply/funds/models/submissions.py b/opentech/apply/funds/models/submissions.py index 7715ab87f..811ee371b 100644 --- a/opentech/apply/funds/models/submissions.py +++ b/opentech/apply/funds/models/submissions.py @@ -39,7 +39,7 @@ from ..workflow import ( ) -storage_settings = settings.get('APPLY_STORAGE_CONFIG', {}) +storage_settings = getattr(settings, 'APPLY_STORAGE_CONFIG', {}) submission_storage = DefaultStorage(**storage_settings) -- GitLab