[Libreoffice-commits] dev-tools.git: esc-reporting/esc-report.py

Michael Meeks michael.meeks at collabora.com
Tue Jan 2 11:54:44 UTC 2018


 esc-reporting/esc-report.py |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 849bcefe094d4bcaea1054ad7e5d15660e5ecbcd
Author: Michael Meeks <michael.meeks at collabora.com>
Date:   Tue Jan 2 11:53:57 2018 +0000

    Most pressing - fix formatting.

diff --git a/esc-reporting/esc-report.py b/esc-reporting/esc-report.py
index b4b38b4..f23840d 100755
--- a/esc-reporting/esc-report.py
+++ b/esc-reporting/esc-report.py
@@ -317,10 +317,12 @@ def report_esc_prototype():
 
     txt = '     open:\n'
     for id, title in statList['escList']['MostPressingBugs']['open']['list'].items():
-        txt += '        {} "{}"\n'.format(id, title)
+        txt += '        + {}\n'.format(title)
+        txt += '            + https://bugs.documentfoundation.org/show_bug.cgi?id={}\n'.format(id)
     txt += '     closed:\n'
     for id, title in statList['escList']['MostPressingBugs']['closed']['list'].items():
-        txt += '        {} "{}"\n'.format(id, title)
+        txt += '        + {}\n'.format(title)
+        txt += '            + https://bugs.documentfoundation.org/show_bug.cgi?id={}\n'.format(id)
     escPrototype = escPrototype.replace('$<ESC_MOST_PRESSING_BUGS>', txt)
 
     txt = '    + {}({:+d}) import failure, {}({:+d}) export failures'.format(


More information about the Libreoffice-commits mailing list