mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
auto-changelog: Remove latin1 from codecs
Bruno Haible had pointed out that latin1 is a subset of cp1252 and is hence redundant. I forgot to remove it back then.
This commit is contained in:
@ -40,7 +40,7 @@ def decode(string):
|
||||
Decode a string read from the source file. The multiple attempts are needed
|
||||
due to the presence of the page break characters and some tests in locales.
|
||||
'''
|
||||
codecs = ['utf8', 'latin1', 'cp1252']
|
||||
codecs = ['utf8', 'cp1252']
|
||||
|
||||
for i in codecs:
|
||||
try:
|
||||
|
Reference in New Issue
Block a user