diff options
author | Simon Glass <sjg@chromium.org> | 2019-05-17 22:00:50 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-10 16:52:58 -0600 |
commit | 1fc62de19fff9ab5228af72038753ec3a529eef1 (patch) | |
tree | 0ac1c70ce9fe8dff3c23709991743eec4452ddff /tools | |
parent | e16b7b6c49ff80c8cc2eb53b1f210dc4b743dc90 (diff) | |
download | u-boot-1fc62de19fff9ab5228af72038753ec3a529eef1.zip u-boot-1fc62de19fff9ab5228af72038753ec3a529eef1.tar.gz u-boot-1fc62de19fff9ab5228af72038753ec3a529eef1.tar.bz2 |
binman: Fix up a format string in AssertInList()
Add the missing 's' to the required '%s' here.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/ftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py index 48fec50..d0a8b75 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 |