summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/compat.py')
-rw-r--r--bitbake/lib/bb/compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/compat.py b/bitbake/lib/bb/compat.py
index ea4e23a008..440a2fbc8b 100644
--- a/bitbake/lib/bb/compat.py
+++ b/bitbake/lib/bb/compat.py
@@ -343,7 +343,7 @@ def worker(inqueue, outqueue, initializer=None, initargs=(), maxtasks=None):
343 job, i, func, args, kwds = task 343 job, i, func, args, kwds = task
344 try: 344 try:
345 result = (True, func(*args, **kwds)) 345 result = (True, func(*args, **kwds))
346 except Exception, e: 346 except Exception as e:
347 result = (False, e) 347 result = (False, e)
348 try: 348 try:
349 put((job, i, result)) 349 put((job, i, result))