summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2010-01-22 14:20:17 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-01-22 16:10:30 +0000
commitd520ae0764016906ff61ec33b14eabc908aa8408 (patch)
treefaee1965eae47ead5c99eb53098585119505da53 /lib
parentf4d0b61fdebc73f4e3b6821a98c3f9a7e5486214 (diff)
downloadbitbake-d520ae0764016906ff61ec33b14eabc908aa8408.tar.gz
parse_py/ConfHandler.py: missing colon after else
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/parse/parse_py/ConfHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/parse/parse_py/ConfHandler.py b/lib/bb/parse/parse_py/ConfHandler.py
index 7069562f0..86d052a7c 100644
--- a/lib/bb/parse/parse_py/ConfHandler.py
+++ b/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):