[gnome-continuous-yocto/gnomeostree-3.28-rocko: 716/8267] scripts: python3: replace exec statement with builtin



commit c67597468057745534f2b6ee1b2dbd9fb00ac12d
Author: Ed Bartosh <ed bartosh linux intel com>
Date:   Thu Jun 2 13:12:57 2016 +0300

    scripts: python3: replace exec statement with builtin
    
    Used exec() builtin instead of 'exec' statement as
    this statement doesn't exist in python 3.
    
    (From meta-yocto rev: ceb6c6fac212c5e1e76bf58b793dc2b9420b4a66)
    
    Signed-off-by: Ed Bartosh <ed bartosh linux intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 scripts/lib/bsp/engine.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py
index 5ff6c98..2b87d33 100644
--- a/scripts/lib/bsp/engine.py
+++ b/scripts/lib/bsp/engine.py
@@ -1362,7 +1362,7 @@ def run_program_lines(linelist, codedump):
         of = open("bspgen.out", "w")
         of.write(buf)
         of.close()
-    exec buf
+    exec(buf)
 
 
 def gen_target(files, context = None):


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]