1
0
mirror of https://github.com/django/django.git synced 2025-07-07 03:09:22 +00:00

[soc2009/model-valitaion] minor correction in comments

git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/model-validation@11269 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Honza Král 2009-07-19 20:55:15 +00:00
parent d0c3e19de5
commit 70cf6d86fd

View File

@ -249,7 +249,7 @@ class BaseForm(StrAndUnicode):
if name in self.cleaned_data: if name in self.cleaned_data:
del self.cleaned_data[name] del self.cleaned_data[name]
# run all the validators after the fields have been cleaned since they # run complex validators after the fields have been cleaned since they
# need access to all_values # need access to all_values
for name, field in self.fields.items(): for name, field in self.fields.items():
if not name in self.cleaned_data: if not name in self.cleaned_data: