Skip to content

Commit

Permalink
readthedocs support
Browse files Browse the repository at this point in the history
  • Loading branch information
jasgrewal committed Apr 6, 2019
1 parent d837512 commit 606cba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cancerscope/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _downloadFile(url, filename, timeout=180):
request = requests.get(url, timeout=10, stream=True)
with open(filename, 'w') as fh:
## Walk through request response in chunks of 1024*1024 bytes
for chunk in request.iter_content(1024*10240000):
for chunk in request.iter_content(1024*1024000):
fh.write(chunk)

def _downloadFiles(files, downloadDir):
Expand Down

0 comments on commit 606cba6

Please sign in to comment.