summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-01-17 17:50:41 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-17 19:59:10 +0100
commit0c95a546f22a1b5e3dd94caffa7743ada6c9dc73 (patch)
tree84bbfb0b42d26df932e7a5d98651337cde6a2a1b /bin/reproducible_html_notes.py
parentc6331e906d3f7540e57ea12361f335352825b679 (diff)
downloadjenkins.debian.net-0c95a546f22a1b5e3dd94caffa7743ada6c9dc73.tar.xz
reproducible: _html_notes: also sort the issues by name, when they affect the same number of packages
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 766e6dab..c5e8799f 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -295,7 +295,7 @@ def index_issues(issues):
+ tab*3 + "Identified issues\n" + tab*2 + "</th>\n" + tab*2 + "<th>\n" \
+ tab*3 + "Affected packages\n" + tab*2 + "</th>\n" + tab + "</tr>\n"
html = (tab*2).join(templ.splitlines(True))
- for issue in sorted(issues, key=lambda x: len(issues_count[x]), reverse=True):
+ for issue in sorted(issues, key=lambda x: (-len(issues_count[x]), x)):
html += tab*3 + '<tr>\n'
html += tab*4 + '<td><a href="' + ISSUES_URI + '/' + issue + \
'_issue.html">' + issue + '</a></td>\n'