diff --git a/bin/docker_detection_tester/modules/utils.py b/bin/docker_detection_tester/modules/utils.py index 6671e16367..f4c850a39f 100644 --- a/bin/docker_detection_tester/modules/utils.py +++ b/bin/docker_detection_tester/modules/utils.py @@ -17,6 +17,7 @@ def download_file_from_http(url:str, destination_file:str, overwrite_file:bool=F with open(destination_file, "wb") as output: for piece in file_to_download.iter_content(chunk_size=chunk_size): output.write(piece) + print("Done") except Exception as e: if verbose_print: print("FAILED")