summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/localflavor/cl/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/localflavor/cl/forms.py b/django/contrib/localflavor/cl/forms.py
index b3b9cf8741..87c8093407 100644
--- a/django/contrib/localflavor/cl/forms.py
+++ b/django/contrib/localflavor/cl/forms.py
@@ -1,6 +1,7 @@
"""
Chile specific form helpers.
"""
+
from django.newforms import ValidationError
from django.newforms.fields import RegexField, EMPTY_VALUES
from django.utils.translation import gettext
@@ -26,7 +27,7 @@ class CLRutField(RegexField):
def clean(self, value):
"""
- Check and clean the chilean rut.
+ Check and clean the Chilean RUT.
"""
super(CLRutField, self).clean(value)
if value in EMPTY_VALUES: