Skip to content
Snippets Groups Projects
Commit 35ce2dc4 authored by Wu, Josh's avatar Wu, Josh Committed by Simon Glass
Browse files

patman: cover letter shows like 00/xx if more than 10 patches


Make cover letter shows like 0/x, 00/xx and 000/xxx etc.

Signed-off-by: default avatarJosh Wu <josh.wu@atmel.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent f5e5ece0
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
# SPDX-License-Identifier: GPL-2.0+ # SPDX-License-Identifier: GPL-2.0+
# #
import math
import os import os
import re import re
import shutil import shutil
...@@ -468,8 +469,10 @@ def InsertCoverLetter(fname, series, count): ...@@ -468,8 +469,10 @@ def InsertCoverLetter(fname, series, count):
prefix = series.GetPatchPrefix() prefix = series.GetPatchPrefix()
for line in lines: for line in lines:
if line.startswith('Subject:'): if line.startswith('Subject:'):
# TODO: if more than 10 patches this should save 00/xx, not 0/xx # if more than 10 or 100 patches, it should say 00/xx, 000/xxx, etc
line = 'Subject: [%s 0/%d] %s\n' % (prefix, count, text[0]) zero_repeat = int(math.log10(count)) + 1
zero = '0' * zero_repeat
line = 'Subject: [%s %s/%d] %s\n' % (prefix, zero, count, text[0])
# Insert our cover letter # Insert our cover letter
elif line.startswith('*** BLURB HERE ***'): elif line.startswith('*** BLURB HERE ***'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment