summaryrefslogtreecommitdiffstats
path: root/lib/bb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb')
-rw-r--r--lib/bb/data_smart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index 54ed72823..55a6f3143 100644
--- a/lib/bb/data_smart.py
+++ b/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