]> code.ossystems Code Review - openembedded-core.git/commitdiff
patchreview: don't disable malformed SoB check uninative-2.0
authorRoss Burton <ross.burton@intel.com>
Fri, 11 May 2018 16:08:09 +0000 (17:08 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 15 May 2018 09:00:33 +0000 (10:00 +0100)
We cleaned up the metadata so this can be enabled again.

Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/contrib/patchreview.py

index 4e3e73c7a8baaf4dfbc9987f66edfc6fec435f7a..1086c95f67fde8f30562e239cb747ffe595f9f8c 100755 (executable)
@@ -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))