From d4bfcd3b24ae7cbe5fefed81edbad4c91128d789 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 17 Jan 2024 23:33:31 -0500 Subject: [PATCH] Add debug print to test_debian_compatibility --- lints/test_debian_compatibility.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lints/test_debian_compatibility.py b/lints/test_debian_compatibility.py index 6823ac18..2e81a79b 100644 --- a/lints/test_debian_compatibility.py +++ b/lints/test_debian_compatibility.py @@ -46,6 +46,7 @@ def fetch_debian_package_desc(debian_name): print(f"Error {e} from {url}, retrying after {wait}s") sleep(wait) else: + print(f"Failed to fetch debian name {debian_name} from {url}: {e}") raise e raise Exception(f"Failed to fetch {url}")