X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/9889197918d4166fc7453e866ab0f4ca72056cc3..4b2479a67217baa238beb0b407a63ff1025b09f1:/wtem/forms.py diff --git a/wtem/forms.py b/wtem/forms.py index 8cdfe79..504fd26 100644 --- a/wtem/forms.py +++ b/wtem/forms.py @@ -19,8 +19,8 @@ class WTEMForm(forms.ModelForm): continue self.fields['attachment_for_' + str(exercise['id'])] = forms.FileField(required = False) - def save(self): - submission = super(WTEMForm, self).save() + def save(self, commit=True): + submission = super(WTEMForm, self).save(commit=commit) for name, file in self.files.items(): m = re.match(r'attachment_for_(\d+)(?:__(.*))?', name) exercise_id = int(m.group(1))