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