From ef1de9ecaf73e28234d284b79ec45e084d0f0c53 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Sun, 20 Jun 2010 12:08:07 -0700 Subject: Apply some 2to3 refactorings Signed-off-by: Richard Purdie --- bitbake/lib/bb/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bb/utils.py') diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index a7fb44d7d..c0cc9c6ea 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -326,7 +326,7 @@ def better_exec(code, context, text, realfile): """ import bb.parse try: - exec code in _context, context + exec(code, _context, context) except: (t, value, tb) = sys.exc_info() @@ -349,7 +349,7 @@ def better_exec(code, context, text, realfile): raise def simple_exec(code, context): - exec code in _context, context + exec(code, _context, context) def better_eval(source, locals): return eval(source, _context, locals) -- cgit v1.2.3