diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-01-26 02:22:44 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-05 00:17:35 -0800 |
commit | 09300d9261becee8d6c71c606f701dfa1d4ab29c (patch) | |
tree | 603e1c994d9997c479b382d4f4e16ce18d58b167 /lib | |
parent | 7290322d9614b1e3f5991ee257980e0575bef80e (diff) | |
download | spack-09300d9261becee8d6c71c606f701dfa1d4ab29c.tar.gz spack-09300d9261becee8d6c71c606f701dfa1d4ab29c.tar.bz2 spack-09300d9261becee8d6c71c606f701dfa1d4ab29c.tar.xz spack-09300d9261becee8d6c71c606f701dfa1d4ab29c.zip |
Ignore more errors when spidering.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/util/web.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/spack/spack/util/web.py b/lib/spack/spack/util/web.py index 82e202aa8f..62c4fa6aa1 100644 --- a/lib/spack/spack/util/web.py +++ b/lib/spack/spack/util/web.py @@ -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 |