From 70cf6d86fd7c91d5bf5da3da0d76736a1ec93596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Sun, 19 Jul 2009 20:55:15 +0000 Subject: [PATCH] [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 --- django/forms/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/forms.py b/django/forms/forms.py index c7f07657d4..ea3fe28bfe 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -249,7 +249,7 @@ class BaseForm(StrAndUnicode): if name in self.cleaned_data: 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 for name, field in self.fields.items(): if not name in self.cleaned_data: