[Buildroot] [PATCH buildroot-test 6/9] utils/daily-mail: change the URL length formatting to reflect the actual URL length

Victor Huesca victor.huesca at bootlin.com
Sun Aug 4 10:53:45 UTC 2019


The formating length specifies a 40 characters long string but the
actual length is 79 characters long. This patch updates the lenght to
79.

Signed-off-by: Victor Huesca <victor.huesca at bootlin.com>
---
 utils/daily-mail | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utils/daily-mail b/utils/daily-mail
index c489fc1..4cc5345 100755
--- a/utils/daily-mail
+++ b/utils/daily-mail
@@ -193,9 +193,9 @@ def show_results(results, show_status, show_orphan=False):
         orphan_str = 'ORPH' if r.get('orphan') else ''
         url = http_baseurl + "/results/" + r['identifier']
         if show_status:
-            contents += "%12s | %30s | %3s | %40s" % (arch, reason, status_str, url)
+            contents += "%12s | %30s | %3s | %79s" % (arch, reason, status_str, url)
         else:
-            contents += "%12s | %30s | %40s" % (arch, reason, url)
+            contents += "%12s | %30s | %79s" % (arch, reason, url)
         if show_orphan:
             contents += " | %4s\n" % (orphan_str)
         else:
-- 
2.21.0




More information about the buildroot mailing list