diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2010-01-22 14:20:17 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-02-10 16:38:33 +0000 |
commit | d5519d4ad98d452f32382427accbe15ee9e717a1 (patch) | |
tree | b489e5549a99f3066d742acac5a779c13717dfd9 | |
parent | 7a4579e7cbc26714771ecb5854702b240a9daca8 (diff) | |
download | ast2050-yocto-poky-d5519d4ad98d452f32382427accbe15ee9e717a1.zip ast2050-yocto-poky-d5519d4ad98d452f32382427accbe15ee9e717a1.tar.gz |
bitbake: parse_py/ConfHandler.py: missing colon after else
(Bitbake rev: d520ae0764016906ff61ec33b14eabc908aa8408)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/ConfHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index 7069562..86d052a 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): |