diff options
Diffstat (limited to 'examples/greetingInKorean.py')
-rw-r--r-- | examples/greetingInKorean.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/greetingInKorean.py b/examples/greetingInKorean.py index 7f5a17e..8b6fa49 100644 --- a/examples/greetingInKorean.py +++ b/examples/greetingInKorean.py @@ -6,9 +6,9 @@ #
# Copyright 2004-2016, by Paul McGuire
#
-from pyparsing import Word, pyparsing_unicode
+from pyparsing import Word, pyparsing_unicode as ppu
-koreanChars = pyparsing_unicode.Korean.alphas
+koreanChars = ppu.Korean.alphas
koreanWord = Word(koreanChars, min=2)
# define grammar
|