summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-08-27 11:00:33 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-27 11:16:02 +0100
commit4c95e5f46cf2a656100bbf5a0e5a09d506abf9b9 (patch)
tree64e594433d7b359f69cf3cc86c3e94d777b637de /lib/bb/event.py
parent552b8935dd2f9f11e8d5c08a597a7e966b891480 (diff)
downloadbitbake-contrib-4c95e5f46cf2a656100bbf5a0e5a09d506abf9b9.tar.gz
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 <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 1169cbfb2..67cfceaf5 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