summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-03-02 01:41:43 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2016-03-02 01:47:54 -0800
commita0c6519de9d03744e33b5187d42ec0d966dbd3e0 (patch)
tree707ee228ec8fd03559f316eae58c8cea981cfec5 /lib
parent8421dcb7628f5258e44ecd50868c19cf89cbead9 (diff)
downloadspack-a0c6519de9d03744e33b5187d42ec0d966dbd3e0.tar.gz
spack-a0c6519de9d03744e33b5187d42ec0d966dbd3e0.tar.bz2
spack-a0c6519de9d03744e33b5187d42ec0d966dbd3e0.tar.xz
spack-a0c6519de9d03744e33b5187d42ec0d966dbd3e0.zip
Fixes #476: create was broken for FTP URLs.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/util/web.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/spack/util/web.py b/lib/spack/spack/util/web.py
index e26daef296..73f4858b02 100644
--- a/lib/spack/spack/util/web.py
+++ b/lib/spack/spack/util/web.py
@@ -86,12 +86,12 @@ def _spider(args):
if not "Content-type" in resp.headers:
tty.debug("ignoring page " + url)
- return pages
+ return pages, links
if not resp.headers["Content-type"].startswith('text/html'):
tty.debug("ignoring page " + url + " with content type " +
resp.headers["Content-type"])
- return pages
+ return pages, links
# Do the real GET request when we know it's just HTML.
req.get_method = lambda: "GET"
@@ -173,7 +173,7 @@ def spider(root_url, **kwargs):
performance over a sequential fetch.
"""
max_depth = kwargs.setdefault('depth', 1)
- pages, links = _spider((root_url, set(), root_url, None, 1, max_depth, False))
+ pages, links = _spider((root_url, set(), root_url, None, 1, max_depth, False))
return pages, links