From: Cristiana Voicu Date: Tue, 27 Aug 2013 08:00:33 +0000 (+0300) Subject: bitbake/event.py: UIhandler filter should work without a mask X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c95e5f46cf2a656100bbf5a0e5a09d506abf9b9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- 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