diff options
| author | Ilya Yanok <[email protected]> | 2012-08-06 23:46:06 +0000 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2012-09-02 16:23:33 +0200 |
| commit | a8840cb2f040b8aa1c870b7431ce27e9ec81284e (patch) | |
| tree | 419ab8c710f95f12a2958ad22da21b49b96c3b4d | |
| parent | 05e5b73506f0a07660f0930f4ecec6e6f5b7cd03 (diff) | |
patman: don't pick changes while processing patches
We already got all changes from git log output and the comment
to the ProcessLine function clearly states that 'patch' mode
is not for scanning tags.
Signed-off-by: Ilya Yanok <[email protected]>
| -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 036b1290f96..3de32d582ca 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 |
