diff options
-rw-r--r-- | lib/spack/spack/fetch_strategy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/fetch_strategy.py b/lib/spack/spack/fetch_strategy.py index 80e2cdf413..d48b999ddc 100644 --- a/lib/spack/spack/fetch_strategy.py +++ b/lib/spack/spack/fetch_strategy.py @@ -156,7 +156,7 @@ class URLFetchStrategy(FetchStrategy): if spack.curl.returncode == 22: # This is a 404. Curl will print the error. - raise FailedDownloadError(url) + raise FailedDownloadError(self.url) if spack.curl.returncode == 60: # This is a certificate error. Suggest spack -k |