diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/qa/oe_audit.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/qa/oe_audit.py b/contrib/qa/oe_audit.py index 7e04480626..905f1108d3 100755 --- a/contrib/qa/oe_audit.py +++ b/contrib/qa/oe_audit.py @@ -11,6 +11,9 @@ def read_available(filename): packages = {} for line in f: + if line.startswith("NOTE: ") or line.startswith("Parsing .bb"): + continue + # str.split can not be used as we have multiple whitespace first_space = line.find(" ") package = line[0:first_space] |