From 208a42dfb56eaa2ce4b4d1e58281ba1ebf1cc028 Mon Sep 17 00:00:00 2001 From: Alexander Burdeiny Date: Tue, 18 Oct 2016 17:09:44 +0300 Subject: [PATCH] fix for expobanner paid update error --- expobanner/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expobanner/forms.py b/expobanner/forms.py index a4d2a757..fa3b8801 100644 --- a/expobanner/forms.py +++ b/expobanner/forms.py @@ -229,7 +229,7 @@ class BasePaidUpdateForm(forms.ModelForm): fields = ['logo', 'organiser', 'public'] def save(self, commit=True): - paid = super(PaidUpdateForm, self).save(commit=False) + paid = super(BasePaidUpdateForm, self).save(commit=False) if commit: tickets = self.cleaned_data['tickets'] b_tickets = paid.tickets