From 17e07741891ef8cbf586011be1ede75ed42f401d Mon Sep 17 00:00:00 2001 From: Kyle Knoepfel Date: Thu, 18 Apr 2024 10:50:15 -0500 Subject: [PATCH] Make sure variable is None if exception is raised. (#43707) --- lib/spack/spack/util/web.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/spack/spack/util/web.py b/lib/spack/spack/util/web.py index 24f4f53618..8da447b8bf 100644 --- a/lib/spack/spack/util/web.py +++ b/lib/spack/spack/util/web.py @@ -707,6 +707,7 @@ def _spider(url: urllib.parse.ParseResult, collect_nested: bool, _visited: Set[s raw_link = metadata_parser.fragments.pop() abs_link = url_util.join(response_url, raw_link.strip(), resolve_href=True) + fragment_response_url = None try: # This seems to be text/html, though text/fragment+html is also used fragment_response_url, _, fragment_response = read_from_url(abs_link, "text/html")