diff options
author | Ross Burton <ross.burton@intel.com> | 2018-05-11 17:08:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-15 10:56:51 +0100 |
commit | 076d8fcdd210d8b8f76657f2c464955cb4313614 (patch) | |
tree | 49a6bbeabb0aa4532cdf188a8c5c7c3e2b47187b /scripts | |
parent | db4965438bc88c32eda4a0b86bd731b796d27502 (diff) | |
download | poky-076d8fcdd210d8b8f76657f2c464955cb4313614.tar.gz |
patchreview: don't disable malformed SoB check
We cleaned up the metadata so this can be enabled again.
(From OE-Core rev: 9611485bba03ef77ff31121e3b1da7cd57990c3e)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/patchreview.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contrib/patchreview.py b/scripts/contrib/patchreview.py index 4e3e73c7a8..1086c95f67 100755 --- a/scripts/contrib/patchreview.py +++ b/scripts/contrib/patchreview.py | |||
@@ -132,8 +132,8 @@ def analyse(results, want_blame=False, verbose=True): | |||
132 | need_blame = True | 132 | need_blame = True |
133 | if verbose: | 133 | if verbose: |
134 | print("Missing Signed-off-by tag (%s)" % patch) | 134 | print("Missing Signed-off-by tag (%s)" % patch) |
135 | # TODO: disable this for now as too much fails | 135 | |
136 | if False and r.malformed_sob: | 136 | if r.malformed_sob: |
137 | need_blame = True | 137 | need_blame = True |
138 | if verbose: | 138 | if verbose: |
139 | print("Malformed Signed-off-by '%s' (%s)" % (r.malformed_sob, patch)) | 139 | print("Malformed Signed-off-by '%s' (%s)" % (r.malformed_sob, patch)) |