diff options
Diffstat (limited to 'meta/lib/oe/qa.py')
-rw-r--r-- | meta/lib/oe/qa.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/lib/oe/qa.py b/meta/lib/oe/qa.py index e338ad6439..cd36cb5070 100644 --- a/meta/lib/oe/qa.py +++ b/meta/lib/oe/qa.py | |||
@@ -215,12 +215,6 @@ def handle_error(error_class, error_msg, d): | |||
215 | return True | 215 | return True |
216 | handle_error.visitorcode = handle_error_visitorcode | 216 | handle_error.visitorcode = handle_error_visitorcode |
217 | 217 | ||
218 | def add_message(messages, section, new_msg): | ||
219 | if section not in messages: | ||
220 | messages[section] = new_msg | ||
221 | else: | ||
222 | messages[section] = messages[section] + "\n" + new_msg | ||
223 | |||
224 | def exit_with_message_if_errors(message, d): | 218 | def exit_with_message_if_errors(message, d): |
225 | qa_fatal_errors = bb.utils.to_boolean(d.getVar("QA_ERRORS_FOUND"), False) | 219 | qa_fatal_errors = bb.utils.to_boolean(d.getVar("QA_ERRORS_FOUND"), False) |
226 | if qa_fatal_errors: | 220 | if qa_fatal_errors: |