From 7777a13306babd17e6c5956b2efb7c7886e8fc7c Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Thu, 26 Feb 2026 12:44:54 +0100 Subject: [PATCH] test: Move Fetching-print to download_from_url util This does not change any behavior. --- test/download_utils.py | 1 + test/get_previous_releases.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/download_utils.py b/test/download_utils.py index de7de82c71b..a4f94d8de43 100644 --- a/test/download_utils.py +++ b/test/download_utils.py @@ -9,6 +9,7 @@ import urllib.request def download_from_url(url, archive): + print(f"Fetching: {url}") last_print_time = time.time() def progress_hook(progress_bytes, total_size): diff --git a/test/get_previous_releases.py b/test/get_previous_releases.py index bd83c7873d9..cd77c55e461 100755 --- a/test/get_previous_releases.py +++ b/test/get_previous_releases.py @@ -129,8 +129,6 @@ def download_binary(tag, args) -> int: archive = f'bitcoin-{tag[1:]}-{host}.{archive_format}' archive_url = f'https://bitcoincore.org/{bin_path}/{archive}' - print(f'Fetching: {archive_url}') - try: download_from_url(archive_url, archive) except Exception as e: