Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/authors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ Authors
* Michał Sałaban
* Mike Lissner
* Morgane Alonso
* Naglis Jonaitis
* Nishit Shah
* Olivier Sels
* Olle Vidner
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ New fields for existing flavors:

Modifications to existing flavors:

- Fix typo in Marijampolė county name in LTCountySelect
(`gh-480 <https://github.com/django/django-localflavor/pull/480>`_).
- CIF spanish starting with 'U' bug resolved
(`gh-469 <https://github.com/django/django-localflavor/pull/469>`_).
- Fix error code for BRPostalCodeValidator
Expand Down
2 changes: 1 addition & 1 deletion localflavor/lt/lt_choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
('alytus', _('Alytus')),
('kaunas', _('Kaunas')),
('klaipeda', _('Klaipėda')),
('mariampole', _('Mariampolė')),
('marijampole', _('Marijampolė')),
('panevezys', _('Panevėžys')),
('siauliai', _('Šiauliai')),
('taurage', _('Tauragė')),
Expand Down
2 changes: 1 addition & 1 deletion tests/test_lt.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_LTCountySelect(self):
<option value="alytus">Alytus</option>
<option value="kaunas">Kaunas</option>
<option value="klaipeda">Klaipėda</option>
<option value="mariampole">Mariampolė</option>
<option value="marijampole">Marijampolė</option>
<option value="panevezys">Panevėžys</option>
<option value="siauliai">Šiauliai</option>
<option value="taurage">Tauragė</option>
Expand Down