bitbake: parse_py/ConfHandler.py: missing colon after else

(Bitbake rev: d520ae0764016906ff61ec33b14eabc908aa8408)

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Martin Jansa 2010-01-22 14:20:17 +01:00 committed by Richard Purdie
parent 7a4579e7cb
commit d5519d4ad9
1 changed files with 1 additions and 1 deletions

View File

@ -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):