From a8875d4a4b7eb47baa7bb0bbd8b643aa258ac23b Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Wed, 3 Jun 2020 14:42:39 +0200 Subject: [PATCH] Fix typo --- spacy/morphology.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/morphology.pyx b/spacy/morphology.pyx index 399ce406e..3e369fb3e 100644 --- a/spacy/morphology.pyx +++ b/spacy/morphology.pyx @@ -42,7 +42,7 @@ def _normalize_props(props): elif isinstance(key, (int, str)) and isinstance(value, (int, str)): out[key] = value else: - warnings.warn(Warnings.100.format(feature={key: value})) + warnings.warn(Warnings.W100.format(feature={key: value})) return out