diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-04-26 14:59:27 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-04-26 14:59:27 +0000 |
| commit | 143270856b388ee34556caeb41df293b68ef8b55 (patch) | |
| tree | d1ad48431a1bc99502586304b092cec746b71ccc | |
| parent | 4bce3c17ec8ca896e376dc85e02e0288117bcf2a (diff) | |
Small formatting changes to localflavor/cl/forms.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/localflavor/cl/forms.py | 3 |
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: |
