From 6f9ebc2f348443f325ecc3259e1627ca867f24a8 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 30 Jan 2015 20:33:19 +1100 Subject: [PATCH] * Fix download script --- spacy/en/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/en/download.py b/spacy/en/download.py index ee6056818..4ea302633 100644 --- a/spacy/en/download.py +++ b/spacy/en/download.py @@ -20,7 +20,7 @@ def download_file(url, out): return url.rsplit('/', 1)[1] -def install_all_data(url, dest_dir): +def install_data(url, dest_dir): filename = download_file(url, dest_dir) t = tarfile.open(path.join(dest_dir, filename)) t.extractall(dest_dir)