diff options
| -rw-r--r-- | bitbake/lib/bb/utils.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 47fef8c1a9..f5336dda60 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -348,7 +348,7 @@ def better_exec(code, context, text, realfile = "<code>"):          code = better_compile(code, realfile, realfile)      try:          exec(code, _context, context) -    except: +    except Exception:          (t, value, tb) = sys.exc_info()          if t in [bb.parse.SkipPackage, bb.build.FuncFailed]: | 
