summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_breakages.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-12-07 12:28:42 +0100
committerHolger Levsen <holger@layer-acht.org>2015-12-07 12:28:42 +0100
commitd128401746db0d511c36456d475713fe77d0c295 (patch)
tree52b34ed029fd9e9e71e795cb166a6c43c34351f2 /bin/reproducible_html_breakages.py
parent5666075846a19703331c0d9ff2553f4a683e5e2f (diff)
downloadjenkins.debian.net-d128401746db0d511c36456d475713fe77d0c295.tar.xz
reproducible: rename debbindiff.(html|txt)(.gz|) files to diffoscope… files
Diffstat (limited to 'bin/reproducible_html_breakages.py')
-rwxr-xr-xbin/reproducible_html_breakages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py
index 029d94a4..47be0dbc 100755
--- a/bin/reproducible_html_breakages.py
+++ b/bin/reproducible_html_breakages.py
@@ -24,7 +24,7 @@ def unrep_with_dbd_issues():
for pkg, version, suite, arch in results:
eversion = strip_epoch(version)
dbd = DBD_PATH + '/' + suite + '/' + arch + '/' + pkg + '_' + \
- eversion + '.debbindiff.html'
+ eversion + '.diffoscope.html'
if not os.access(dbd, os.R_OK):
without_dbd.append((pkg, version, suite, arch))
log.warning(suite + '/' + arch + '/' + pkg + ' (' + version + ') is '
@@ -51,7 +51,7 @@ def not_unrep_with_dbd_file():
for pkg, version, suite, arch in results:
eversion = strip_epoch(version)
dbd = DBD_PATH + '/' + suite + '/' + arch + '/' + pkg + '_' + \
- eversion + '.debbindiff.html'
+ eversion + '.diffoscope.html'
if os.access(dbd, os.R_OK):
bad_pkgs.append((pkg, version, suite, arch))
log.warning(dbd + ' exists but ' + suite + '/' + arch + '/' + pkg + ' (' + version + ')'