From 98b29950b4748e056a2ed791f86e4e1fa82be7bb Mon Sep 17 00:00:00 2001 From: "Patrick J. Burns" Date: Mon, 29 Aug 2016 12:16:03 -0400 Subject: [PATCH] Fix #366; fix case of cltk_data (#371) --- cltk/corpus/latin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cltk/corpus/latin/__init__.py b/cltk/corpus/latin/__init__.py index 2993f521f..79902ccfd 100644 --- a/cltk/corpus/latin/__init__.py +++ b/cltk/corpus/latin/__init__.py @@ -17,7 +17,7 @@ # Would like to have this search through a CLTK_DATA environment variable # Better to use something like make_cltk_path in cltk.utils.file_operations? home = os.path.expanduser('~') -cltk_path = os.path.join(home, 'CLTK_DATA') +cltk_path = os.path.join(home, 'cltk_data') word_tokenizer = WordTokenizer('latin')