]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake: parse_py/ConfHandler.py: missing colon after else
authorMartin Jansa <martin.jansa@gmail.com>
Fri, 22 Jan 2010 13:20:17 +0000 (14:20 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Wed, 10 Feb 2010 16:38:33 +0000 (16:38 +0000)
(Bitbake rev: d520ae0764016906ff61ec33b14eabc908aa8408)

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/parse/parse_py/ConfHandler.py

index 7069562f078571849c0ffcbc6b2a349184e3ce39..86d052a7c3c8d76afa6c6808384ab9bd5e337ca3 100644 (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):