diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-15 12:55:47 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-15 12:55:47 +0000 |
commit | 382a630e7833799d8f46d4a8117b07838e58876a (patch) | |
tree | f8182b89ce4a69b3a48dc506007e4f4fc9b3cbd4 /bitbake | |
parent | 28f7dd3ca773458d74d21f405be5f9e61668990a (diff) | |
download | poky-382a630e7833799d8f46d4a8117b07838e58876a.tar.gz |
bitbake fetch/__init__.py: Failing urls should raise errors, not fatal exceptions
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index b42bcf439c..cedf839860 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
@@ -232,7 +232,7 @@ def checkstatus(d): | |||
232 | ret = try_mirrors (d, u, mirrors, True) | 232 | ret = try_mirrors (d, u, mirrors, True) |
233 | 233 | ||
234 | if not ret: | 234 | if not ret: |
235 | bb.msg.fatal(bb.msg.domain.Fetcher, "URL %s doesn't work" % u) | 235 | bb.msg.error(bb.msg.domain.Fetcher, "URL %s doesn't work" % u) |
236 | 236 | ||
237 | def localpaths(d): | 237 | def localpaths(d): |
238 | """ | 238 | """ |