summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2014-12-08 10:50:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-09 22:15:35 +0000
commitac45ea848901b0f6cd23087b662dde8ce9cd807e (patch)
tree60e7c86c8df26ecd0089e3ea14748aca16f1be47 /lib/bb/event.py
parent41236c28985a3b66b3737382a94e39dbf6480160 (diff)
downloadbitbake-contrib-ac45ea848901b0f6cd23087b662dde8ce9cd807e.tar.gz
event: fix resetting class handlers object
If you don't explicitly specify to use a global variable when doing an assignment, you will be setting a local variable instead, which means this function wasn't working at all. It explains some odd behaviour we have seen in the layer index where event handlers were sometimes bleeding into other contexts where they should not have been. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 9645476e5..fec6a05b3 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -55,6 +55,7 @@ def get_class_handlers():
return _handlers
def set_class_handlers(h):
+ global _handlers
_handlers = h
def clean_class_handlers():