From 2b889bde7ff9db60b09bb5129b76e2d106b7ed59 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Thu, 24 Nov 2011 12:58:40 +0800 Subject: revert 'v'->'ü' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/genpinyintable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/genpinyintable.py b/scripts/genpinyintable.py index 27b1a17..5af4e91 100644 --- a/scripts/genpinyintable.py +++ b/scripts/genpinyintable.py @@ -32,7 +32,7 @@ def filter_pinyin_list(): for (correct, wrong, bopomofo, flags, chewing) in gen_pinyin_list(): flags = '|'.join(flags) chewing = "ChewingKey({0})".format(', '.join(chewing)) - correct = correct.replace("v", "ü") + #correct = correct.replace("v", "ü") content_table.append((correct, bopomofo, chewing)) if "IS_PINYIN" in flags: pinyin_index.append((wrong, flags, correct)) -- cgit