mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -04:00
Don't set a custom dictionary path for now as Enchant 2.2.x is not compatible with calls to set_param. #326
This commit is contained in:
parent
92564d4075
commit
59bd2842c4
@ -23,10 +23,10 @@ class spellChecker(object):
|
|||||||
super(spellChecker, self).__init__()
|
super(spellChecker, self).__init__()
|
||||||
# Set Dictionary path if not set in a previous call to this method.
|
# Set Dictionary path if not set in a previous call to this method.
|
||||||
# Dictionary path will be located in user config, see https://github.com/manuelcortez/twblue/issues/208
|
# Dictionary path will be located in user config, see https://github.com/manuelcortez/twblue/issues/208
|
||||||
dict_path = enchant.get_param("enchant.myspell.dictionary.path")
|
# dict_path = enchant.get_param("enchant.myspell.dictionary.path")
|
||||||
if dict_path == None:
|
# if dict_path == None:
|
||||||
enchant.set_param("enchant.myspell.dictionary.path", os.path.join(paths.config_path(), "dicts"))
|
# enchant.set_param("enchant.myspell.dictionary.path", os.path.join(paths.config_path(), "dicts"))
|
||||||
log.debug("Dictionary path set to %s" % (os.path.join(paths.config_path(), "dicts"),))
|
# log.debug("Dictionary path set to %s" % (os.path.join(paths.config_path(), "dicts"),))
|
||||||
log.debug("Creating the SpellChecker object. Dictionary: %s" % (dictionary,))
|
log.debug("Creating the SpellChecker object. Dictionary: %s" % (dictionary,))
|
||||||
self.active = True
|
self.active = True
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user