diff options
author | Patrick Delaunay | 2020-07-02 19:08:24 +0200 |
---|---|---|
committer | Simon Glass | 2020-07-20 11:37:47 -0600 |
commit | df1fa4b2239aaf2e4a7b72ff1e81cfa53af8b08e (patch) | |
tree | ce8c22e6a96ca61c46ca25ee4da63debb5e1b932 /tools/patman/patchstream.py | |
parent | f07e58b878fc18bd69d2c19075f0fb8d7d35da00 (diff) |
patman: Detect unexpected END
Detect unexpected 'END' line when a section is not detected.
This patch detect issue when tag name for section start is misspelled,
for example 'Commit-note:' for 'Commit-notes:'
Commit-note:
....
END
Then 'Commit-note:' is removed silently by re_remove = "Commit-\w*:"
but 'END' is kept in commit message.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r-- | tools/patman/patchstream.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 0c68c861569..70acb096423 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -269,6 +269,10 @@ class PatchStream: else: self.section.append(line) + # If we are not in a section, it is an unexpected END + elif line == 'END': + raise ValueError("'END' wihout section") + # Detect the commit subject elif not is_blank and self.state == STATE_PATCH_SUBJECT: self.commit.subject = line |