diff options
Diffstat (limited to 'bitbake/lib/bb/shell.py')
-rw-r--r-- | bitbake/lib/bb/shell.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/shell.py b/bitbake/lib/bb/shell.py index 760c371d90..711cd4335f 100644 --- a/bitbake/lib/bb/shell.py +++ b/bitbake/lib/bb/shell.py | |||
@@ -179,8 +179,9 @@ class BitBakeShellCommands: | |||
179 | global last_exception | 179 | global last_exception |
180 | last_exception = Providers.NoProvider | 180 | last_exception = Providers.NoProvider |
181 | 181 | ||
182 | except runqueue.TaskFailure, (fnid, fn, taskname): | 182 | except runqueue.TaskFailure, fnids: |
183 | print "ERROR: '%s, %s' failed" % (fn, taskname) | 183 | for fnid in fnids: |
184 | print "ERROR: '%s' failed" % td.fn_index[fnid]) | ||
184 | global last_exception | 185 | global last_exception |
185 | last_exception = runqueue.TaskFailure | 186 | last_exception = runqueue.TaskFailure |
186 | 187 | ||