From 23f6ebf0f3d3932f7226c18c5ff4d81c7278467f Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Wed, 27 Feb 2019 16:37:03 +0100 Subject: [PATCH] Add missing " (closes #3343) --- spacy/lang/uk/lemmatizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/lang/uk/lemmatizer.py b/spacy/lang/uk/lemmatizer.py index f41f36fe2..ab56c824d 100644 --- a/spacy/lang/uk/lemmatizer.py +++ b/spacy/lang/uk/lemmatizer.py @@ -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"' )