diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-08 17:30:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-08 17:30:45 +0000 |
commit | aa45760702e874977454778659c205b29d1ff049 (patch) | |
tree | 8c0b4fa74e65c63f4c86319594422cc455a47ff5 | |
parent | ee1a9c0476cc4b2ce9dfb0faa29a1371a8517c40 (diff) | |
download | openembedded-core-aa45760702e874977454778659c205b29d1ff049.tar.gz openembedded-core-aa45760702e874977454778659c205b29d1ff049.tar.bz2 openembedded-core-aa45760702e874977454778659c205b29d1ff049.zip |
bitbake/fetch2: Ignore UnboundLocalError in exception handler in try_mirror
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 8e35f5487e..ee3476bcc8 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -448,8 +448,11 @@ def try_mirrors(d, origud, mirrors, check = False): except bb.fetch2.BBFetchException: logger.debug(1, "Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url)) - if os.path.isfile(ud.localpath): - bb.utils.remove(ud.localpath) + try: + if os.path.isfile(ud.localpath): + bb.utils.remove(ud.localpath) + except UnboundLocalError: + pass continue return None |