From 8f78ff8923670275bed69291c723e05b66edb22e Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 14 Nov 2011 14:33:26 +0800 Subject: fixes pinyintable.py --- scripts/pinyintable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/pinyintable.py b/scripts/pinyintable.py index a825fea..0bf411f 100644 --- a/scripts/pinyintable.py +++ b/scripts/pinyintable.py @@ -104,7 +104,7 @@ def gen_pinyins(): if pinyin_key in shengmu_list: flags.append("PINYIN_INCOMPLETE") chewing_key = bopomofo.PINYIN_BOPOMOFO_MAP[pinyin_key] - if chewing_key in chewing.ASCII_CHEWING_INITIAL_MAP: + if chewing_key in chewing.CHEWING_ASCII_INITIAL_MAP: flags.append("CHEWING_INCOMPLETE") yield pinyin_key, pinyin_key, chewing_key, \ flags, get_chewing(pinyin_key) -- cgit