diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2013-08-27 11:00:33 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-27 11:16:58 +0100 |
commit | 8d134e999e6d84c2046225c406f9f46325101ca5 (patch) | |
tree | 37731dc1f95591208934668ab2ee2d2c3df9dacd /bitbake | |
parent | a552fdceeb812a11da869bf4f7f5218e11f100a6 (diff) | |
download | poky-8d134e999e6d84c2046225c406f9f46325101ca5.tar.gz |
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 <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/event.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
237 | return True | 237 | return True |
238 | return False | 238 | return False |
239 | eid = str(event.__class__)[8:-2] | 239 | eid = str(event.__class__)[8:-2] |
240 | if eid not in self.eventmask: | 240 | if self.eventmask and eid not in self.eventmask: |
241 | return False | 241 | return False |
242 | return True | 242 | return True |
243 | 243 | ||