From 5b53b34dcb64dc65ee651cbf78cbbd9105dc4f4c Mon Sep 17 00:00:00 2001 From: Ming Liu Date: Thu, 26 Jan 2017 14:29:32 +0100 Subject: meta: remove remaining True option to getVarFlag calls This is a complementary fix to commit 2dea9e49: [ meta: remove True option to getVarFlag calls ] it intended to remove all True option to getVarFlag calls, but there are still some remaining. Search made with the following regex: getVarFlag ?\((.*), True\) Signed-off-by: Ming Liu Signed-off-by: Ross Burton --- meta/lib/oe/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/lib/oe/data.py b/meta/lib/oe/data.py index 39567333f1..80bba2b9d2 100644 --- a/meta/lib/oe/data.py +++ b/meta/lib/oe/data.py @@ -30,7 +30,7 @@ def export2json(d, json_file, expand=True): continue elif key.startswith("do_"): continue - elif d.getVarFlag(key, "func", True): + elif d.getVarFlag(key, "func"): continue keys2export.append(key) -- cgit 1.2.3-korg