From 382a630e7833799d8f46d4a8117b07838e58876a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 15 Mar 2010 12:55:47 +0000 Subject: bitbake fetch/__init__.py: Failing urls should raise errors, not fatal exceptions Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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): """ -- cgit v1.2.3-54-g00ecf