File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ Modifications to existing flavors:
21
21
Previous State Jammu and Kashmir (JK) is now under Union Territories, Ladakh (LA) is the new addition in the Union Territories.
22
22
Few modificication in the States and Union Territories names: Orissa (OR) is now Odisha (OR), Pondicherry (PY) is now Puducherry (PY)
23
23
Andaman and Nicobar (AN) is now Andaman and Nicobar Islands (AN).
24
+ - Correct sorting of US_STATES to sort by full name rather than code
25
+ (`gh-424 <https://github.com/django/django-localflavor/issues/424 >`_
26
+ `gh-428 <https://github.com/django/django-localflavor/pull/428 >`_).
24
27
25
28
Other changes:
26
29
Original file line number Diff line number Diff line change 112
112
113
113
US_STATES = lazy (lambda : tuple (sorted (
114
114
CONTIGUOUS_STATES + NON_CONTIGUOUS_STATES ,
115
- key = operator .itemgetter (0 ))), tuple )()
115
+ key = operator .itemgetter (1 ))), tuple )()
116
116
"""
117
117
This docstring is not read by Sphinx, so it has been copied to
118
118
docs/localflavor/us.rst.
You can’t perform that action at this time.
0 commit comments