summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r--bitbake/lib/bb/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 8d614fe236..aa962c4e5d 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -253,7 +253,7 @@ def explode_dep_versions(s):
253 """ 253 """
254 Take an RDEPENDS style string of format: 254 Take an RDEPENDS style string of format:
255 "DEPEND1 (optional version) DEPEND2 (optional version) ..." 255 "DEPEND1 (optional version) DEPEND2 (optional version) ..."
256 skip null value and items appeared in dependancy string multiple times 256 skip null value and items appeared in dependency string multiple times
257 and return a dictionary of dependencies and versions. 257 and return a dictionary of dependencies and versions.
258 """ 258 """
259 r = explode_dep_versions2(s) 259 r = explode_dep_versions2(s)
@@ -381,7 +381,7 @@ def _print_exception(t, value, tb, realfile, text, context):
381 381
382 error.append("Exception: %s" % ''.join(exception)) 382 error.append("Exception: %s" % ''.join(exception))
383 383
384 # If the exception is from spwaning a task, let's be helpful and display 384 # If the exception is from spawning a task, let's be helpful and display
385 # the output (which hopefully includes stderr). 385 # the output (which hopefully includes stderr).
386 if isinstance(value, subprocess.CalledProcessError) and value.output: 386 if isinstance(value, subprocess.CalledProcessError) and value.output:
387 error.append("Subprocess output:") 387 error.append("Subprocess output:")