diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_breakages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py index 41b7cb27..3556c11d 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -60,7 +60,7 @@ def not_unrep_with_dbd_file(): dbd = DBD_PATH + '/' + suite + '/' + arch + '/' + pkg + '_' + \ eversion + '.debbindiff.html' if os.access(dbd, os.R_OK): - bad_pks.append((pkg, version, suite, arch)) + bad_pkgs.append((pkg, version, suite, arch)) log.warning(pkg + '/' + suite + ' (' + version + ') has a ' 'debbindiff file but it\'s not unreproducible.') return bad_pkgs |