diff options
author | László Németh <nemeth@numbertext.org> | 2012-09-18 16:04:30 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2012-09-18 16:04:30 +0200 |
commit | 48ab525dcfd6451fa2f3e37e92bd60f3885c47f7 (patch) | |
tree | f67673b440553ca7aa0d5feb6f79636bacec0caf | |
parent | d1f69e800560a558f9dbffc195573d32354e8efb (diff) |
fix suggest() splitting in some optional Hungarian grammar checking rules
Change-Id: I3c73f1c6c138a7c70cd8d25c6031d90779d5c543
-rw-r--r-- | dictionaries/hu_HU/pythonpath/lightproof_impl_hu_HU.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dictionaries/hu_HU/pythonpath/lightproof_impl_hu_HU.py b/dictionaries/hu_HU/pythonpath/lightproof_impl_hu_HU.py index afbde77..f122057 100644 --- a/dictionaries/hu_HU/pythonpath/lightproof_impl_hu_HU.py +++ b/dictionaries/hu_HU/pythonpath/lightproof_impl_hu_HU.py @@ -119,7 +119,7 @@ def suggest(rLoc, word): if not x: return word t = x.getAlternatives() - suggestions[word] = join(t, "\\n") + suggestions[word] = join(t, "|") return suggestions[word] # get the nth word of the input string or None |