Add missing " (closes #3343)

This commit is contained in:
Ines Montani 2019-02-27 16:37:03 +01:00
parent 533b580c19
commit 23f6ebf0f3

View File

@ -15,7 +15,7 @@ class UkrainianLemmatizer(Lemmatizer):
UkrainianLemmatizer._morph = MorphAnalyzer(lang="uk")
except (ImportError, TypeError):
raise ImportError(
"The Ukrainian lemmatizer requires the pymorphy2 library and
"The Ukrainian lemmatizer requires the pymorphy2 library and "
'dictionaries: try to fix it with "pip uninstall pymorphy2" and'
'"pip install git+https://github.com/kmike/pymorphy2.git pymorphy2-dicts-uk"'
)