From ba0fe0bfcd3d37f86fad9e7cdf44c511352eca08 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 15 Nov 2011 13:42:41 +0800 Subject: update gen pinyin table --- scripts/genpinyintable.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/genpinyintable.py') diff --git a/scripts/genpinyintable.py b/scripts/genpinyintable.py index eafbf5e..7dd6823 100644 --- a/scripts/genpinyintable.py +++ b/scripts/genpinyintable.py @@ -43,6 +43,8 @@ def sort_all(): global content_table, pinyin_index, bopomofo_index #remove duplicates content_table = list(set(content_table)) + pinyin_index = list(set(pinyin_index)) + bopomofo_index = list(set(bopomofo_index)) #define sort function sortfunc = operator.itemgetter(0) #begin sort -- cgit