diff options
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 903c9ef5..31080862 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -164,8 +164,8 @@ def gen_extra_links(package, version, suite, arch, status): links += '<a href="' + url + '" target="main">buildinfo</a>\n' if not default_view: default_view = url - elif status not in ('untested', 'blacklisted', 'FTBFS', 'not for us') and \ - not args.ignore_missing_files: + elif not args.ignore_missing_files and status not in \ + ('untested', 'blacklisted', 'FTBFS', 'not for us', 'depwait', '404'): log.critical('buildinfo not detected at ' + buildinfo) rbuild = pkg_has_rbuild(package, version, suite, arch) if rbuild: # being a tuple (rbuild path, size), empty if non existant |