Skip to content

Commit d96aac7

Browse files
committed
fix test error in windows
1 parent de444fd commit d96aac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythainlp/tag/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ def tag(text1):
2121
from artagger import Tagger
2222
except ImportError:
2323
import pip
24-
pip.main(['install','https://github.com/franziz/artagger/archive/master.zip'])
24+
pip.main(['install','https://github.com/wannaphongcom/artagger/archive/master.zip'])
2525
try:
2626
from artagger import Tagger
2727
except ImportError:
28-
print("Error ! using 'pip install https://github.com/franziz/artagger/archive/master.zip'")
28+
print("Error ! using 'pip install https://github.com/wannaphongcom/artagger/archive/master.zip'")
2929
sys.exit(0)
3030
tagger = Tagger()
3131
words = tagger.tag(' '.join(text1))

0 commit comments

Comments
 (0)