]> Git Repo - J-u-boot.git/commitdiff
patman: cover letter shows like 00/xx if more than 10 patches
authorWu, Josh <[email protected]>
Fri, 3 Apr 2015 02:51:17 +0000 (10:51 +0800)
committerSimon Glass <[email protected]>
Sat, 18 Apr 2015 22:24:25 +0000 (16:24 -0600)
Make cover letter shows like 0/x, 00/xx and 000/xxx etc.

Signed-off-by: Josh Wu <[email protected]>
Acked-by: Simon Glass <[email protected]>
tools/patman/patchstream.py

index 8c3a0ec9eee5e7af6bc0ef0820a069e0f74c78aa..6d3c41f49ec0c6f617ec7f98cb2d5c65e20091dc 100644 (file)
@@ -3,6 +3,7 @@
 # SPDX-License-Identifier:     GPL-2.0+
 #
 
+import math
 import os
 import re
 import shutil
@@ -468,8 +469,10 @@ def InsertCoverLetter(fname, series, count):
     prefix = series.GetPatchPrefix()
     for line in lines:
         if line.startswith('Subject:'):
-            # TODO: if more than 10 patches this should save 00/xx, not 0/xx
-            line = 'Subject: [%s 0/%d] %s\n' % (prefix, count, text[0])
+            # if more than 10 or 100 patches, it should say 00/xx, 000/xxx, etc
+            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
         elif line.startswith('*** BLURB HERE ***'):
This page took 0.036261 seconds and 4 git commands to generate.