From d4a493855e20d2ea35c9c424b572bbcd8faeec3f Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Jan 2015 23:01:30 +1100 Subject: [PATCH] * Fix error msg --- spacy/vocab.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/vocab.pyx b/spacy/vocab.pyx index eb1968688..964785bbe 100644 --- a/spacy/vocab.pyx +++ b/spacy/vocab.pyx @@ -102,7 +102,7 @@ cdef class Vocab: slice_unicode(&c_str, id_or_string, 0, len(id_or_string)) lexeme = self.get(self.mem, &c_str) else: - raise ValueError("Vocab unable to map type: %s. Maps unicode --> int or int --> unicode" % str(type(id_or_string))) + raise ValueError("Vocab unable to map type: %s. Maps unicode --> Lexeme or int --> Lexeme" % str(type(id_or_string))) return Lexeme.from_ptr(lexeme, self.strings) def __setitem__(self, unicode py_str, dict props):