From 050491a1cc2f81be212017341ca8d443d5ebb9cc Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Thu, 23 Jun 2022 15:28:24 -0700 Subject: [PATCH] Forgot to include a print statement, causing lines to be jumbled together. --- bin/docker_detection_tester/modules/utils.py | 1 + 1 file changed, 1 insertion(+) 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")