소스 검색

bitbake fetch/__init__.py: Failing urls should raise errors, not fatal exceptions

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie 15 년 전
부모
커밋
382a630e78
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      bitbake/lib/bb/fetch/__init__.py

+ 1 - 1
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):
     """