summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-05-11 17:08:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-15 10:00:33 +0100
commit9611485bba03ef77ff31121e3b1da7cd57990c3e (patch)
treee96bacae32a0651fe9474c173b0e076e26bf3ec9
parentff6c5746c821ec128f9cae9bacb818d2c51a4049 (diff)
downloadopenembedded-core-9611485bba03ef77ff31121e3b1da7cd57990c3e.tar.gz
patchreview: don't disable malformed SoB checkuninative-2.0
We cleaned up the metadata so this can be enabled again. Signed-off-by: Ross Burton <ross.burton@intel.com>
-rwxr-xr-xscripts/contrib/patchreview.py4
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):
need_blame = True
if verbose:
print("Missing Signed-off-by tag (%s)" % patch)
- # TODO: disable this for now as too much fails
- if False and r.malformed_sob:
+
+ if r.malformed_sob:
need_blame = True
if verbose:
print("Malformed Signed-off-by '%s' (%s)" % (r.malformed_sob, patch))