diff options
| -rw-r--r-- | tools/patman/patchstream.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 036b1290f..3de32d582 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -214,7 +214,8 @@ class PatchStream:                  self.in_change = 0                  out = self.ProcessLine(line)              else: -                self.series.AddChange(self.in_change, self.commit, line) +                if self.is_log: +                    self.series.AddChange(self.in_change, self.commit, line)              self.skip_blank = False          # Detect Series-xxx tags |