diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-04-10 03:29:53 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-04-10 03:29:53 +0000 |
| commit | cbb83f967f18c40c0322746a71a0cc00c5f0c2df (patch) | |
| tree | d512e434cd52102100993e516589b0ba6b162317 | |
| parent | 66d8530b62efdd8a8a6cc26f2000835ba411a100 (diff) | |
Fixed #3983 -- Fixed misspelled Delaware in localflavor.us.us_states. Thanks, oneofthemany1
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4992 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/localflavor/us/us_states.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/localflavor/us/us_states.py b/django/contrib/localflavor/us/us_states.py index 89124a4b69..c84facc219 100644 --- a/django/contrib/localflavor/us/us_states.py +++ b/django/contrib/localflavor/us/us_states.py @@ -15,7 +15,7 @@ STATE_CHOICES = ( ('CA', 'California'), ('CO', 'Colorado'), ('CT', 'Connecticut'), - ('DE', 'Deleware'), + ('DE', 'Delaware'), ('DC', 'District of Columbia'), ('FM', 'Federated States of Micronesia'), ('FL', 'Florida'), @@ -97,6 +97,7 @@ STATES_NORMALIZED = { 'de': 'DE', 'del': 'DE', 'delaware': 'DE', + 'deleware': 'DE', 'district of columbia': 'DC', 'federated states of micronesia': 'FM', 'fl': 'FL', |
