summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-14 20:18:29 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-14 20:18:29 +0100
commitb72978c465168b85bcf3577236a90ca22741f833 (patch)
tree0ee3f67bfef11fdceea7ef5abe3c8389701d9bd7 /bin/reproducible_html_notes.py
parente97329cee056fa5f502aa07a254314f6587a5997 (diff)
downloadjenkins.debian.net-b72978c465168b85bcf3577236a90ca22741f833.tar.xz
reproducible: dont sort twice
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 9d4771a0..fe998748 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -384,7 +384,7 @@ def index_no_notes(notes, bugs):
+ 'that still need to be investigated: </p>\n'
html += '<p>\n' + tab + '<code>\n'
html = (tab*2).join(html.splitlines(True))
- for pkg in sorted(without_notes):
+ for pkg in without_notes:
url = RB_PKG_URI + '/' + pkg + '.html'
html += tab*4 + '<a href="' + url + '">' + pkg + '</a>'
html += get_trailing_icon(pkg, bugs) + '\n'