commit | 479f3d3d2a8013a549120d8b71a0e191495599cb | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Sep 26 20:08:23 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Sep 26 20:08:23 2002 +0000 |
tree | 51527052995ebe37b1ee749c8278fb82a9dbae7e | |
parent | 09f7424f3a46f4b0b5e6b696c0cded44a4f85f77 [diff] [blame] |
Oops, must convert hyphens to underscores in keys of aliases dict.
diff --git a/Lib/encodings/aliases.py b/Lib/encodings/aliases.py index c842c61..b4212f2 100644 --- a/Lib/encodings/aliases.py +++ b/Lib/encodings/aliases.py
@@ -27,7 +27,7 @@ '646' : 'ascii', 'ansi_x3.4_1968' : 'ascii', 'ansi_x3.4_1986' : 'ascii', - 'ansi-x3-4-1968' : 'ascii', + 'ansi_x3_4_1968' : 'ascii', 'cp367' : 'ascii', 'csascii' : 'ascii', 'ibm367' : 'ascii',