Forgot to include a print statement, causing

lines to be jumbled together.
This commit is contained in:
pyth0n1c
2022-06-23 15:28:24 -07:00
parent 0181c9fd63
commit 050491a1cc
@@ -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")