diff --git a/scripts/test_urls.py b/scripts/test_urls.py index 1008f6c380a3d836bb37b02fe74b017c9827ddb9..483a98a588b56c27ed3442b04d9857dd369683fd 100755 --- a/scripts/test_urls.py +++ b/scripts/test_urls.py @@ -113,7 +113,7 @@ for url in urls: if not status: broken.append(url) - print(url, "OK" if status else "FAIL", f"{end - start:0.4f}s") + print(url, "OK" if status else "FAIL", resp.status_code if resp else "-", f"{end - start:0.4f}s") print(f"Found {len(broken)} broken URLs in {len(urls)} tested:") for b in broken: