From: Simon Glass Date: Sat, 18 May 2019 04:00:50 +0000 (-0600) Subject: binman: Fix up a format string in AssertInList() X-Git-Tag: v2025.01-rc5-pxa1908~2888^2~34 X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=1fc62de19fff9ab5228af72038753ec3a529eef1;p=u-boot.git binman: Fix up a format string in AssertInList() Add the missing 's' to the required '%s' here. Signed-off-by: Simon Glass --- diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py index 48fec50179..d0a8b751a2 100644 --- 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