diff options
author | Reiner Herrmann <reiner@reiner-h.de> | 2015-06-14 16:39:46 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-14 18:02:37 +0200 |
commit | b60f21fe94aed956919985635d563bb6ec648acf (patch) | |
tree | 5f26bc2f377a288d08b859b8b2fe1e624b4ee597 | |
parent | 87864448c3a94d25bd3a9893ce0d0a47e7e498cf (diff) | |
download | jenkins.debian.net-b60f21fe94aed956919985635d563bb6ec648acf.tar.xz |
reproducible: fix "Created $count issue pages for $suite" counter
-rwxr-xr-x | bin/reproducible_html_notes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index d6f9d5da..51a0c990 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -347,8 +347,8 @@ def iterate_over_notes(notes): def iterate_over_issues(issues): num_issues = str(len(issues)) - i = 0 for suite in SUITES: + i = 0 for issue in sorted(issues): log.debug('iterating over issues in ' + suite +'... ' + str(i) + '/' + num_issues) log.debug('\t' + str(issue)) |