[PATCH 3/7] patman: Fix-up for plural warning

Simon Glass sjg at chromium.org
Tue Nov 3 21:54:12 CET 2020


This should be squashed into:

	patman: Fix spelling of plural for warning

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 tools/patman/patchstream.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py
index b8cb6163182..cdcd50a8499 100644
--- a/tools/patman/patchstream.py
+++ b/tools/patman/patchstream.py
@@ -803,7 +803,7 @@ def fix_patches(series, fnames):
                 print('\t%s' % warn)
             print()
         count += 1
-    print('Cleaned %d patche%s' % (count, 's' if count > 1 else ''))
+    print('Cleaned %d patch%s' % (count, 'es' if count > 1 else ''))
 
 def insert_cover_letter(fname, series, count):
     """Inserts a cover letter with the required info into patch 0
-- 
2.29.1.341.ge80a0c044ae-goog



More information about the U-Boot mailing list