﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
15587	django.forms.BaseModelForm._post_clean updates instance even when form validation fails	lanyjie	nobody	"This method will update the model instance with self.cleaned_data.

{{{
    self.instance = construct_instance(self, self.instance, opts.fields, opts.exclude)
}}}

however, the cleaned_data might not be good. It is probably good to have a single line inserted before the first line of code of this method:

{{{
def _post_clean(self):
   if self._errors: return
   ...
}}}"	Bug	closed	Forms	1.3	Normal	duplicate	data validation	vmagamedov@… Sergey Maranchuk	Accepted	0	1	0	0	0	0
