From 8996fc2cca5827687ad8ee6ebb57c027b9f8778c Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sat, 6 Apr 2024 10:39:08 +0200 Subject: [PATCH] Fix updating Google Spreadsheet after uploading CSV Signed-off-by: Emmy D'Anello --- participation/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/participation/views.py b/participation/views.py index 50c4825..75afbd8 100644 --- a/participation/views.py +++ b/participation/views.py @@ -1182,7 +1182,7 @@ class PoolUploadNotesView(VolunteerMixin, FormView, DetailView): note.save() if os.getenv('GOOGLE_PRIVATE_KEY_ID', None): - pool.update_notes_spreadsheet() + pool.update_spreadsheet() messages.success(self.request, _("Notes were successfully uploaded.")) return super().form_valid(form)