patman: Fix spelling of plural for warning

Tidy up the extra 's' when there is only a single warning. Fix the empty
print statement also.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2020-10-29 21:46:30 -06:00
parent 8c17f8c5d2
commit 9994baadc0

View File

@ -665,12 +665,13 @@ def fix_patches(series, fnames):
cmt.count = count cmt.count = count
result = fix_patch(backup_dir, fname, series, cmt) result = fix_patch(backup_dir, fname, series, cmt)
if result: if result:
print('%d warnings for %s:' % (len(result), fname)) print('%d warning%s for %s:' %
(len(result), 's' if len(result) > 1 else '', fname))
for warn in result: for warn in result:
print('\t', warn) print('\t%s' % warn)
print print()
count += 1 count += 1
print('Cleaned %d patches' % count) print('Cleaned %d patch%s' % (count, 'es' if count > 1 else ''))
def insert_cover_letter(fname, series, count): def insert_cover_letter(fname, series, count):
"""Inserts a cover letter with the required info into patch 0 """Inserts a cover letter with the required info into patch 0