summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data_smart.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-rw-r--r--bitbake/lib/bb/data_smart.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 1ed04d50c3..b9d9476fd8 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -46,7 +46,7 @@ class VariableParse:
self.value = val
self.references = set()
- self.funcrefs = set()
+ self.execs = set()
def var_sub(self, match):
key = match.group()[2:-1]
@@ -64,10 +64,10 @@ class VariableParse:
code = match.group()[3:-1]
codeobj = compile(code.strip(), self.varname or "<expansion>", "eval")
- parser = bb.rptest.PythonParser()
+ parser = bb.codeparser.PythonParser()
parser.parse_python(code)
self.references |= parser.references
- self.funcrefs |= parser.execs
+ self.execs |= parser.execs
value = utils.better_eval(codeobj, {"d": self.d})
return str(value)