diff options
| -rw-r--r-- | tools/patman/patchstream.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 70acb096423..ba0a13f6325 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -351,6 +351,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: | 
