[Reproducible-commits] [misc] 01/01: unreproducible-installed: Fix logic of --ignore-with-bugs.

Valentin Lorentz progval-guest at moszumanska.debian.org
Sat Aug 15 10:27:43 UTC 2015


This is an automated email from the git hooks/post-receive script.

progval-guest pushed a commit to branch master
in repository misc.

commit 28ababddaf6b152c55e21fc89fc2b0e3cb86f7f8
Author: Valentin Lorentz <progval at progval.net>
Date:   Sat Aug 15 12:28:59 2015 +0200

    unreproducible-installed: Fix logic of --ignore-with-bugs.
---
 unreproducible-installed | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/unreproducible-installed b/unreproducible-installed
index 8a834f5..7fc9447 100755
--- a/unreproducible-installed
+++ b/unreproducible-installed
@@ -103,7 +103,8 @@ def main(args):
         import yaml
         with open(args.package_notes_file) as fd:
             notes = yaml.load(fd)
-        unreproducible = {x for x in unreproducible if 'bugs' in notes.get(x, {})}
+
+        unreproducible = {x for x in unreproducible if 'bugs' not in notes.get(x, {})}
 
     installed = get_installed_packages(args)
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/misc.git



More information about the Reproducible-commits mailing list