diff options
author | Tom Rini <trini@konsulko.com> | 2020-11-15 10:13:22 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-11-15 10:13:22 -0500 |
commit | cd0d3749afdad4f4fd03bc005fe5efaad0e09417 (patch) | |
tree | 2b36d72786e953e1c59e332aeeda08a00acbc5ca /tools/patman/patchstream.py | |
parent | de865f7ee1d9b6dff6e265dee44509c8274ea606 (diff) | |
parent | a3e458524c15710e4ac9ce1556a5f0898084d09a (diff) |
Merge tag 'dm-pull-15nov20' of git://git.denx.de/u-boot-dm
Minor fixes/improvements to 'patman status'
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r-- | tools/patman/patchstream.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 772e4b56617..cdcd50a8499 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -452,8 +452,8 @@ class PatchStream: if self.is_log: if self.commit.change_id: raise ValueError( - "%s: Two Change-Ids: '%s' vs. '%s'" % self.commit.hash, - self.commit.change_id, value) + "%s: Two Change-Ids: '%s' vs. '%s'" % + (self.commit.hash, self.commit.change_id, value)) self.commit.change_id = value self.skip_blank = True |