From b60f21fe94aed956919985635d563bb6ec648acf Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Sun, 14 Jun 2015 16:39:46 +0200 Subject: reproducible: fix "Created $count issue pages for $suite" counter --- 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 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)) -- cgit v1.2.3-54-g00ecf