summaryrefslogtreecommitdiffstats
path: root/bitbake
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-02-10 16:38:33 +0000
commitd5519d4ad98d452f32382427accbe15ee9e717a1 (patch)
treeb489e5549a99f3066d742acac5a779c13717dfd9 /bitbake
parent7a4579e7cbc26714771ecb5854702b240a9daca8 (diff)
downloadpoky-d5519d4ad98d452f32382427accbe15ee9e717a1.tar.gz
bitbake: parse_py/ConfHandler.py: missing colon after else
(Bitbake rev: d520ae0764016906ff61ec33b14eabc908aa8408) Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/parse/parse_py/ConfHandler.py2
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 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):
39 bb.msg.debug(3, bb.msg.domain.Parsing, "CONF %s:%d: including %s" % (fn, lineno, s)) 39 bb.msg.debug(3, bb.msg.domain.Parsing, "CONF %s:%d: including %s" % (fn, lineno, s))
40 if force: 40 if force:
41 include(fn, s, data, "include required") 41 include(fn, s, data, "include required")
42 else 42 else:
43 include(fn, s, data, False) 43 include(fn, s, data, False)
44 44
45def handleExport(m, data): 45def handleExport(m, data):