mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
Forgot to include a print statement, causing
lines to be jumbled together.
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user