mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
patman: Correct Change-Ids error message args
The arguments of this error are incorrectly formatted. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4600767d29
commit
53336e6ca8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue