diff options
Diffstat (limited to 'bin')
-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)) |