From ba95764f0502c811becce1c8d7c79c2de39e63ba Mon Sep 17 00:00:00 2001
From: Emanuele Aina <emanuele.aina@collabora.com>
Date: Fri, 9 Jul 2021 01:17:06 +0200
Subject: [PATCH] test_urls: Ensure status is set despite exceptions

---
 scripts/test_urls.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/test_urls.py b/scripts/test_urls.py
index 62c3820b2..7484776ea 100755
--- a/scripts/test_urls.py
+++ b/scripts/test_urls.py
@@ -74,6 +74,7 @@ broken = 0
 for url in urls:
     print("%s : " %(url), end='')
     sys.stdout.flush()
+    status = None
     try:
         resp = requests.head(url, headers=headers, allow_redirects=True, timeout=60, verify=False)
         status = resp.ok
-- 
GitLab