From 8a5808dc7b468551ed42e9c2a7ff1bbbe242ce67 Mon Sep 17 00:00:00 2001
From: Vaibhav Mule <vaibhavmule135@gmail.com>
Date: Wed, 13 May 2020 19:18:09 +0530
Subject: [PATCH] fix lab fund for submission

---
 hypha/apply/funds/models/applications.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hypha/apply/funds/models/applications.py b/hypha/apply/funds/models/applications.py
index f547e6763..968b49c12 100644
--- a/hypha/apply/funds/models/applications.py
+++ b/hypha/apply/funds/models/applications.py
@@ -448,7 +448,7 @@ class LabBase(EmailForm, WorkflowStreamForm, SubmittableStreamForm):  # type: ig
             form = self.get_form(request.POST, request.FILES, page=self, user=request.user)
             draft = request.POST.get('draft', None)
             if form.is_valid():
-                form_submission = self.process_form_submission(form, draft=draft)
+                form_submission = SubmittableStreamForm.process_form_submission(self, form, draft=draft)
                 return self.render_landing_page(request, form_submission, *args, **kwargs)
         else:
             form = self.get_form(page=self, user=request.user)
-- 
GitLab