diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/data_smart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 54ed72823b..55a6f3143c 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py @@ -50,7 +50,7 @@ class DataSmart: self._seen_overrides = seen self.expand_cache = {} - self.expand_context = { + self.expand_globals = { "os": os, "bb": bb, "time": time, @@ -72,7 +72,7 @@ class DataSmart: def python_sub(match): code = match.group()[3:-1] codeobj = compile(code.strip(), varname or "<expansion>", "eval") - s = eval(codeobj, self.expand_context) + s = eval(codeobj, self.expand_globals, {}) if type(s) == types.IntType: s = str(s) return s |