From patchwork Thu Jul 2 17:52:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Patrick Delaunay X-Patchwork-Id: 240658 List-Id: U-Boot discussion From: patrick.delaunay at st.com (Patrick Delaunay) Date: Thu, 2 Jul 2020 19:52:54 +0200 Subject: [PATCH] Add information for skipped commit options Message-ID: <20200702175254.22954-1-patrick.delaunay@st.com> The unsupported Commit-xxx option are silently skipped and removed as 're_remove=Commit-\w*', this patch adds warning message in this case to detect misspelled issue for the 2 supported options: Commit-notes: Commit-changes: For example: the final 's' is missing (Commit-note:) NB: no issue for Series-xxx option as only the supported options are accepted (see valid_series in series.py) Signed-off-by: Patrick Delaunay Reviewed-by: Simon Glass --- tools/patman/patchstream.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index a575c09b47..7efab8c2dd 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -342,6 +342,9 @@ class PatchStream: elif name == 'changes': self.in_change = 'Commit' self.change_version = self.ParseVersion(value, line) + else: + self.warn.append('Line %d: Ignoring Commit-%s' % + (self.linenum, name)) # Detect the start of a new commit elif commit_match: