diff options
Diffstat (limited to 'buildstream/plugins/sources/_downloadablefilesource.py')
-rw-r--r-- | buildstream/plugins/sources/_downloadablefilesource.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildstream/plugins/sources/_downloadablefilesource.py b/buildstream/plugins/sources/_downloadablefilesource.py index ec9c0fbb7..4df4034e0 100644 --- a/buildstream/plugins/sources/_downloadablefilesource.py +++ b/buildstream/plugins/sources/_downloadablefilesource.py @@ -155,6 +155,9 @@ class DownloadableFileSource(Source): except (urllib.error.URLError, urllib.error.ContentTooShortError, OSError) as e: raise SourceError("{}: Error mirroring {}: {}" .format(self, self.url, e)) from e + except ValueError as e: + raise SourceError("{}: Error mirroring {}: {}" + .format(self, self.url, e)) from e def _get_mirror_dir(self): return os.path.join(self.get_mirror_directory(), |