diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-02-16 00:25:23 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-02-16 00:27:54 +0100 |
commit | 656c1dfd1770f7b106206b217446b38405224156 (patch) | |
tree | 23d3ff9b99635d340fd8d56c23c562aa725296d2 | |
parent | 1bf560c820a831d0860bcc8b185695303e23e07a (diff) | |
download | jenkins.debian.net-656c1dfd1770f7b106206b217446b38405224156.tar.xz |
reproducible: fixup 3ae0af9
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 1ae206b5..10e1f639 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -394,7 +394,7 @@ def get_bugs(): if bug[2]: # if the bug is done packages[bug[1]][bug[0]]['done'] = True try: - if (bug,) in bugs_patches: + if (bug[0],) in bugs_patches: packages[bug[1]][bug[0]]['patch'] = True except KeyError: log.error('item: ' + str(bug)) |