summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-12 08:17:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-16 23:32:41 +0100
commitb28ea877e096bbfc89be8851f971383a2243e99d (patch)
tree3ac3bc0f7f3d6fd3092b2cca0a7cbab4aa58d151 /bitbake/lib/bb/event.py
parent3a6ae48e51607d4c31319bc60e2a96dbec856147 (diff)
downloadpoky-b28ea877e096bbfc89be8851f971383a2243e99d.tar.gz
bitbake: data/event/siggen: Fix various exceptions [FIXME]
(Bitbake rev: f1e4a3c550895fb06e1297682c756d8d57cccbf0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 6fb37128ea..023300bed9 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -157,7 +157,8 @@ def fire_ui_handlers(event, d):
157 _ui_handlers[h].event.sendpickle((pickle.dumps(event))) 157 _ui_handlers[h].event.sendpickle((pickle.dumps(event)))
158 else: 158 else:
159 _ui_handlers[h].event.send(event) 159 _ui_handlers[h].event.send(event)
160 except: 160 except Exception as e:
161 print(str(e))
161 errors.append(h) 162 errors.append(h)
162 for h in errors: 163 for h in errors:
163 del _ui_handlers[h] 164 del _ui_handlers[h]