From: Richard Purdie Date: Mon, 15 Mar 2010 12:55:47 +0000 (+0000) Subject: bitbake fetch/__init__.py: Failing urls should raise errors, not fatal exceptions X-Git-Tag: 2011-1~6170 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=382a630e7833799d8f46d4a8117b07838e58876a;p=openembedded-core.git bitbake fetch/__init__.py: Failing urls should raise errors, not fatal exceptions Signed-off-by: Richard Purdie --- 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): ret = try_mirrors (d, u, mirrors, True) if not ret: - bb.msg.fatal(bb.msg.domain.Fetcher, "URL %s doesn't work" % u) + bb.msg.error(bb.msg.domain.Fetcher, "URL %s doesn't work" % u) def localpaths(d): """