* Fix download.py

This commit is contained in:
Matthew Honnibal 2015-06-08 00:08:05 +02:00
parent 7e9e8f654a
commit 1515862861
1 changed files with 1 additions and 2 deletions

View File

@ -21,8 +21,7 @@ SPEECH_DATA_DIR_URL = '%s/en_data_speech-%s.tgz' % (AWS_STORE, VERSION)
DEST_DIR = path.join(path.dirname(__file__), 'data')
def download_file(url, out):
urllib.urlretrieve(url, filename=out)
wget.download(url, out=out)
urllib.urlretrieve(url, filename=path.join(out, url.rsplit('/', 1)[1]))
return url.rsplit('/', 1)[1]