Ignore more errors when spidering.

This commit is contained in:
Todd Gamblin
2014-01-26 02:22:44 -08:00
parent 7290322d96
commit 09300d9261

View File

@@ -124,6 +124,10 @@ def _spider(args):
if depth == 1:
raise spack.error.NoNetworkConnectionError(e.reason, url)
except Exception, e:
# Other types of errors are completely ignored.
pass
return pages