Skip to content

Commit 4724945

Browse files
committed
improve log
1 parent 02d2bb3 commit 4724945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

climada/util/files_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def download_file(url):
3939
block_size = 1024
4040
file_name = url.split('/')[-1]
4141
file_abs_name = os.path.abspath(os.path.join(os.getcwd(), file_name))
42-
LOGGER.info('Downloading temporary file %s', file_abs_name)
42+
LOGGER.info('Downloading file %s', file_abs_name)
4343
with open(file_name, 'wb') as file:
4444
for data in tqdm.tqdm(req_file.iter_content(block_size),
4545
total=math.ceil(total_size//block_size),

0 commit comments

Comments
 (0)