From 4c7c9f5f0e77aac30520bc11669740985768c570 Mon Sep 17 00:00:00 2001 From: javi santana Date: Sat, 13 Sep 2025 09:28:36 +0200 Subject: [PATCH] updated url in demo the current url was redirecting to a new url, updating this url --- examples/drain_bigfile_demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/drain_bigfile_demo.py b/examples/drain_bigfile_demo.py index 04e2917..e9f2592 100644 --- a/examples/drain_bigfile_demo.py +++ b/examples/drain_bigfile_demo.py @@ -18,7 +18,7 @@ in_log_file = "SSH.log" if not os.path.isfile(in_log_file): logger.info(f"Downloading file {in_gz_file}") - p = subprocess.Popen(f"curl https://zenodo.org/record/3227177/files/{in_gz_file} --output {in_gz_file}", shell=True) + p = subprocess.Popen(f"curl https://zenodo.org/records/3227177/files/{in_gz_file} --output {in_gz_file}", shell=True) p.wait() logger.info(f"Extracting file {in_gz_file}") p = subprocess.Popen(f"tar -xvzf {in_gz_file}", shell=True)