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)