projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e16b7b6
)
binman: Fix up a format string in AssertInList()
author
Simon Glass
<sjg@chromium.org>
Sat, 18 May 2019 04:00:50 +0000
(22:00 -0600)
committer
Simon Glass
<sjg@chromium.org>
Wed, 10 Jul 2019 22:52:58 +0000
(16:52 -0600)
Add the missing 's' to the required '%s' here.
Signed-off-by: Simon Glass <sjg@chromium.org>
tools/binman/ftest.py
patch
|
blob
|
history
diff --git
a/tools/binman/ftest.py
b/tools/binman/ftest.py
index 48fec501790dfb2508753849eaf717edb3f81b27..d0a8b751a2ce77f4f63d339c3c5fe5483b25e26c 100644
(file)
--- a/
tools/binman/ftest.py
+++ b/
tools/binman/ftest.py
@@
-395,7
+395,7
@@
class TestFunctional(unittest.TestCase):
for grep in grep_list:
if grep in target:
return
- self.fail("Error: '%' not found in '%s'" % (grep_list, target))
+ self.fail("Error: '%
s
' not found in '%s'" % (grep_list, target))
def CheckNoGaps(self, entries):
"""Check that all entries fit together without gaps