diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-03-05 19:55:29 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-03-05 19:55:29 +0000 |
| commit | aa55e98b87c7f78d60edc51d8aa5662b61899e37 (patch) | |
| tree | 0b2c898b4fa11b1c038ed77a935da2450045ecea | |
| parent | d181aa0e94f5f22c0584206248d63780c7565a68 (diff) | |
Fixed #3654 -- Added missing Mass. to us_states.py in localflavor. Thanks, joe4444
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4665 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/localflavor/usa/us_states.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/localflavor/usa/us_states.py b/django/contrib/localflavor/usa/us_states.py index 5333763645..89124a4b69 100644 --- a/django/contrib/localflavor/usa/us_states.py +++ b/django/contrib/localflavor/usa/us_states.py @@ -32,6 +32,7 @@ STATE_CHOICES = ( ('ME', 'Maine'), ('MH', 'Marshall Islands'), ('MD', 'Maryland'), + ('MA', 'Massachusetts'), ('MI', 'Michigan'), ('MN', 'Minnesota'), ('MS', 'Mississippi'), @@ -235,4 +236,4 @@ STATES_NORMALIZED = { 'wy': 'WY', 'wyo': 'WY', 'wyoming': 'WY', -}
\ No newline at end of file +} |
