We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d2bb3 commit 4724945Copy full SHA for 4724945
climada/util/files_handler.py
@@ -39,7 +39,7 @@ def download_file(url):
39
block_size = 1024
40
file_name = url.split('/')[-1]
41
file_abs_name = os.path.abspath(os.path.join(os.getcwd(), file_name))
42
- LOGGER.info('Downloading temporary file %s', file_abs_name)
+ LOGGER.info('Downloading file %s', file_abs_name)
43
with open(file_name, 'wb') as file:
44
for data in tqdm.tqdm(req_file.iter_content(block_size),
45
total=math.ceil(total_size//block_size),
0 commit comments