summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-11-24 12:58:40 +0800
committerPeng Wu <alexepico@gmail.com>2011-11-24 12:58:40 +0800
commit2b889bde7ff9db60b09bb5129b76e2d106b7ed59 (patch)
treef07f32783ce602a323a799dc7137fc7b6f94befc /scripts
parent5627b7bbfab5380196e4c1e3ffa8b06e258464d7 (diff)
downloadlibpinyin-2b889bde7ff9db60b09bb5129b76e2d106b7ed59.tar.gz
libpinyin-2b889bde7ff9db60b09bb5129b76e2d106b7ed59.tar.xz
libpinyin-2b889bde7ff9db60b09bb5129b76e2d106b7ed59.zip
revert 'v'->'ü'
Diffstat (limited to 'scripts')
-rw-r--r--scripts/genpinyintable.py2
1 files changed, 1 insertions, 1 deletions
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))