
commit 0e3d1c1b09711f7d4db0481fbd2cfbae3cf562d9 Author: Damian Johnson <atagar@torproject.org> Date: Fri Feb 16 16:48:20 2018 -0800 Fix gentoo suppression check Oops, inverted this. :P --- package_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.py b/package_versions.py index 03282fb..e3ce356 100755 --- a/package_versions.py +++ b/package_versions.py @@ -229,7 +229,7 @@ def email_content(): # Gentoo's site fails pretty routinely. No need to generate notices for # it. - if package.platform == 'gentoo': + if package.platform != 'gentoo': has_issue = True lines.append(COLUMN % (project, package.platform, wiki_version, msg))
participants (1)
-
atagar@torproject.org