summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/ast.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
-rw-r--r--bitbake/lib/bb/parse/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index a586c5cde1..e7d389e7a5 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -311,7 +311,7 @@ def finalize(fn, d):
311 all_handlers = {} 311 all_handlers = {}
312 for var in bb.data.getVar('__BBHANDLERS', d) or []: 312 for var in bb.data.getVar('__BBHANDLERS', d) or []:
313 # try to add the handler 313 # try to add the handler
314 handler = bb.data.getVar(var,d) 314 handler = bb.data.getVar(var, d)
315 bb.event.register(var, handler) 315 bb.event.register(var, handler)
316 316
317 tasklist = bb.data.getVar('__BBTASKS', d) or [] 317 tasklist = bb.data.getVar('__BBTASKS', d) or []