diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-09 12:46:42 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-09 12:46:42 +0200 |
commit | ad4e193c0cc65e3d87fc37196a5d086b6730e9e5 (patch) | |
tree | cdc5de864ab7256dd6747c55ddf05601f3ca3121 | |
parent | f138602f9478ee2dca0835420017fd8098b602da (diff) | |
download | jenkins.debian.net-ad4e193c0cc65e3d87fc37196a5d086b6730e9e5.tar.xz |
reproducible: show packages in depwait state on issue pages
-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 f47ab13e..2a4746db 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -271,7 +271,7 @@ def gen_html_issue(issue, suite): affected = '' try: arch = 'amd64' - for status in ['unreproducible', 'FTBFS', 'not for us', 'blacklisted', 'reproducible']: + for status in ['unreproducible', 'FTBFS', 'not for us', 'blacklisted', 'reproducible', 'depwait']: pkgs = [x[0] for x in all_pkgs if x[1] == status and x[2] == suite and x[3] == arch and x[0] in issues_count[issue]] if not pkgs: continue |