summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index ab62d4d055..7ee28fcfcb 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -32,6 +32,7 @@ import logging
32import atexit 32import atexit
33import traceback 33import traceback
34import bb.utils 34import bb.utils
35import bb.compat
35 36
36# This is the pid for which we should generate the event. This is set when 37# This is the pid for which we should generate the event. This is set when
37# the runqueue forks off. 38# the runqueue forks off.
@@ -53,7 +54,7 @@ Registered = 10
53AlreadyRegistered = 14 54AlreadyRegistered = 14
54 55
55# Internal 56# Internal
56_handlers = {} 57_handlers = bb.compat.OrderedDict()
57_ui_handlers = {} 58_ui_handlers = {}
58_ui_handler_seq = 0 59_ui_handler_seq = 0
59 60