From 8506671c5ced0f794d00613bf72348e92a5406c3 Mon Sep 17 00:00:00 2001 From: Troy Olson Date: Wed, 21 Oct 2015 13:33:02 -0700 Subject: [PATCH] =?UTF-8?q?Add=20fix=20for=20=CE=9E=20(capital=20'Xi')=20f?= =?UTF-8?q?or=20the=20band=20CHVRCH=CE=9ES?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'm guessing there aren't too many other bands that this will apply to. Hex code found here: http://webdesign.about.com/od/localization/l/blhtmlcodes-gr.htm --- headphones/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/helpers.py b/headphones/helpers.py index 55a8778a..863384e5 100644 --- a/headphones/helpers.py +++ b/headphones/helpers.py @@ -70,7 +70,7 @@ def latinToAscii(unicrap): xlate = { 0xc0: 'A', 0xc1: 'A', 0xc2: 'A', 0xc3: 'A', 0xc4: 'A', 0xc5: 'A', 0xc6: 'Ae', 0xc7: 'C', - 0xc8: 'E', 0xc9: 'E', 0xca: 'E', 0xcb: 'E', 0x86: 'e', + 0xc8: 'E', 0xc9: 'E', 0xca: 'E', 0xcb: 'E', 0x86: 'e', 0x39e: 'E', 0xcc: 'I', 0xcd: 'I', 0xce: 'I', 0xcf: 'I', 0xd0: 'Th', 0xd1: 'N', 0xd2: 'O', 0xd3: 'O', 0xd4: 'O', 0xd5: 'O', 0xd6: 'O', 0xd8: 'O',