binman: Fix up a format string in AssertInList()
authorSimon Glass <sjg@chromium.org>
Sat, 18 May 2019 04:00:50 +0000 (22:00 -0600)
committerSimon 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

index 48fec501790dfb2508753849eaf717edb3f81b27..d0a8b751a2ce77f4f63d339c3c5fe5483b25e26c 100644 (file)
@@ -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