From d5519d4ad98d452f32382427accbe15ee9e717a1 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 22 Jan 2010 14:20:17 +0100 Subject: bitbake: parse_py/ConfHandler.py: missing colon after else (Bitbake rev: d520ae0764016906ff61ec33b14eabc908aa8408) Signed-off-by: Richard Purdie --- bitbake/lib/bb/parse/parse_py/ConfHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/parse') diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index 7069562f07..86d052a7c3 100644 --- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py +++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py @@ -39,7 +39,7 @@ def handleInclude(m, fn, lineno, data, force): bb.msg.debug(3, bb.msg.domain.Parsing, "CONF %s:%d: including %s" % (fn, lineno, s)) if force: include(fn, s, data, "include required") - else + else: include(fn, s, data, False) def handleExport(m, data): -- cgit v1.2.3-54-g00ecf