From b72978c465168b85bcf3577236a90ca22741f833 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 14 Feb 2015 20:18:29 +0100 Subject: reproducible: dont sort twice --- bin/reproducible_html_notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/reproducible_html_notes.py') 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:

\n' html += '

\n' + tab + '\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 + '' + pkg + '' html += get_trailing_icon(pkg, bugs) + '\n' -- cgit v1.2.3-54-g00ecf