summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 2ce5b66e72..5d038f45ca 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -105,7 +105,9 @@ class HobHandler(gobject.GObject):
105 result_str = str(result) 105 result_str = str(result)
106 if (result_str.startswith("Busy (") or 106 if (result_str.startswith("Busy (") or
107 result_str == "No such command"): 107 result_str == "No such command"):
108 raise Exception(result_str) 108 raise Exception('%s has failed with output "%s". ' %
109 (str(commandline), result_str) +
110 "We recommend that you restart Hob.")
109 return result 111 return result
110 except Exception as e: 112 except Exception as e:
111 self.commands_async = [] 113 self.commands_async = []