From: Martin Jansa Date: Fri, 22 Jan 2010 13:20:17 +0000 (+0100) Subject: bitbake: parse_py/ConfHandler.py: missing colon after else X-Git-Tag: 2011-1~6248 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d5519d4ad98d452f32382427accbe15ee9e717a1;p=openembedded-core.git bitbake: parse_py/ConfHandler.py: missing colon after else (Bitbake rev: d520ae0764016906ff61ec33b14eabc908aa8408) Signed-off-by: Richard Purdie --- 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):