django / django-localflavor

Country-specific Django helpers, formerly of contrib fame
https://django-localflavor.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
828 stars 290 forks source link

US US_STATES is sorted incorrectly #424

Closed ses4j closed 3 years ago

ses4j commented 3 years ago

https://github.com/django/django-localflavor/blob/master/localflavor/us/us_states.py

The US_STATES enum is sorted by state code, but STATE_CHOICES (and old Django versions such as https://github.com/django/django/commit/4b2b2eda24) are sorted by state name. The net effect is that Nevada SHOULD sort before New Jersey, but in fact sorts after since NV is after NJ.

benkonrath commented 3 years ago

@ses4j Thanks for letting us know. Any chance you can make a PR to fix this?

ses4j commented 3 years ago

@benkonrath done.