mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-22 14:32:21 +02:00
Windows: Catch more PDB URL errors
This commit is contained in:
@@ -935,7 +935,7 @@ class PdbRetreiver:
|
||||
try:
|
||||
vollog.debug("Attempting to retrieve {}".format(url + suffix))
|
||||
result = resources.ResourceAccessor(progress_callback).open(url + suffix)
|
||||
except error.HTTPError as excp:
|
||||
except (error.HTTPError, error.URLError) as excp:
|
||||
vollog.debug("Failed with {}".format(excp))
|
||||
if result:
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user