* Fix download script

This commit is contained in:
Matthew Honnibal 2015-01-30 20:33:19 +11:00
parent a2bed49ac7
commit 6f9ebc2f34
1 changed files with 1 additions and 1 deletions

View File

@ -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)