summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/taskexp.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/taskexp.py')
-rw-r--r--bitbake/lib/bb/ui/taskexp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/taskexp.py b/bitbake/lib/bb/ui/taskexp.py
index 7895102b95..8fff244235 100644
--- a/bitbake/lib/bb/ui/taskexp.py
+++ b/bitbake/lib/bb/ui/taskexp.py
@@ -200,7 +200,7 @@ def main(server, eventHandler, params):
200 if error: 200 if error:
201 print("Error running command '%s': %s" % (cmdline, error)) 201 print("Error running command '%s': %s" % (cmdline, error))
202 return 1 202 return 1
203 elif ret != True: 203 elif not ret:
204 print("Error running command '%s': returned %s" % (cmdline, ret)) 204 print("Error running command '%s': returned %s" % (cmdline, ret))
205 return 1 205 return 1
206 except client.Fault as x: 206 except client.Fault as x: