From 2d2765fd8af732e2c717552f2468684c14eb1a4b Mon Sep 17 00:00:00 2001 From: Wannaphong Phatthiyaphaibun Date: Sat, 27 Oct 2018 19:46:07 +0700 Subject: [PATCH] Change PyThaiNLP Url (#2876) --- spacy/lang/th/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/lang/th/__init__.py b/spacy/lang/th/__init__.py index bedec46c8..0786bbdc4 100644 --- a/spacy/lang/th/__init__.py +++ b/spacy/lang/th/__init__.py @@ -30,7 +30,7 @@ class Thai(Language): from pythainlp.tokenize import word_tokenize except ImportError: raise ImportError("The Thai tokenizer requires the PyThaiNLP library: " - "https://github.com/wannaphongcom/pythainlp/") + "https://github.com/PyThaiNLP/pythainlp") words = [x for x in list(word_tokenize(text,"newmm"))] return Doc(self.vocab, words=words, spaces=[False]*len(words))