From 4c95e5f46cf2a656100bbf5a0e5a09d506abf9b9 Mon Sep 17 00:00:00 2001 From: Cristiana Voicu Date: Tue, 27 Aug 2013 11:00:33 +0300 Subject: [PATCH] bitbake/event.py: UIhandler filter should work without a mask The default for the mask will be * (all the handlers) Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- lib/bb/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/event.py b/lib/bb/event.py index 1169cbfb2bd..67cfceaf535 100644 --- a/lib/bb/event.py +++ b/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 -- 2.47.3