Fixed #15175 -- Ensured that Chliean RUT checksum letters aren't case sensitive. Thanks to rvimer for the report, and to ersame for the patch.
H: Enter commit message. Lines beginning with 'HG:' are removed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
66312066a0
commit
90a79ba39a
|
@ -74,7 +74,7 @@ class CLRutField(RegexField):
|
|||
tuple.
|
||||
"""
|
||||
rut = smart_unicode(rut).replace(' ', '').replace('.', '').replace('-', '')
|
||||
return rut[:-1], rut[-1]
|
||||
return rut[:-1], rut[-1].upper()
|
||||
|
||||
def _format(self, code, verifier=None):
|
||||
"""
|
||||
|
|
|
@ -36,6 +36,7 @@ class CLLocalFlavorTests(LocalFlavorTestCase):
|
|||
'78.412.790-7': '78.412.790-7',
|
||||
'8.334.6043': '8.334.604-3',
|
||||
'76793310-K': '76.793.310-K',
|
||||
'76793310-k': '76.793.310-K',
|
||||
}
|
||||
invalid = {
|
||||
'11.111.111-0': error_invalid,
|
||||
|
|
Loading…
Reference in New Issue