From 8d134e999e6d84c2046225c406f9f46325101ca5 Mon Sep 17 00:00:00 2001 From: Cristiana Voicu Date: Tue, 27 Aug 2013 11:00:33 +0300 Subject: [PATCH] bitbake: bitbake/event.py: UIhandler filter should work without a mask The default for the mask will be * (all the handlers) (Bitbake rev: 4c95e5f46cf2a656100bbf5a0e5a09d506abf9b9) Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- bitbake/lib/bb/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 1169cbfb2b..67cfceaf53 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py @@ -237,7 +237,7 @@ class UIEventFilter(object): return True return False eid = str(event.__class__)[8:-2] - if eid not in self.eventmask: + if self.eventmask and eid not in self.eventmask: return False return True