From 1fa7b9fb976fc79020e4527770bc6b0c68000db7 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 24 Sep 2016 12:51:30 +0200 Subject: reproducible Debian: let's beat the notes job in shape, to make it deal gracefully with broken popcon data --- bin/reproducible_html_notes.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 509a2bcb..3d2a6461 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -393,13 +393,16 @@ def iterate_over_issues(issues): def issues_popcon_annotate(issues_list): # outputs [(package, popcon, is_popular)] where is_popular True if it's # in the upper 1/4 of issues_list, i.e. a relative measure - n = len(issues_list) - popcon_dict = dict((p, 0) for p in issues_list) - popcon_dict.update(popcon.package(*issues_list)) - issues = sorted(popcon_dict.items(), key=lambda p: p[0]) - issues_by_popcon = sorted(issues, key=lambda p: p[1], reverse=True) - issues_with_popcon = [(p[0], p[1], i