summaryrefslogtreecommitdiff
path: root/django/forms/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms/forms.py')
-rw-r--r--django/forms/forms.py2
1 files changed, 1 insertions, 1 deletions
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: