summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_breakages.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-01-25 13:08:55 +0100
committerHolger Levsen <holger@layer-acht.org>2017-01-25 13:08:55 +0100
commitecde756737061c9ff14eb41e43a3e8dcddc24e3f (patch)
treea3ea5a261d8bee6239ad9bf4d27e7a2e418add15 /bin/reproducible_html_breakages.py
parentd99f6691597e500458ec2ecbcc4a7765c11c9c62 (diff)
downloadjenkins.debian.net-ecde756737061c9ff14eb41e43a3e8dcddc24e3f.tar.xz
Revert "fixup 43c0ed4: reproducible Debian: also provide summaries for other log types than stale builds"
This reverts commit c38ffaffb0595be4c5ec155072ed44565ee656ab.
Diffstat (limited to 'bin/reproducible_html_breakages.py')
-rwxr-xr-xbin/reproducible_html_breakages.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py
index 6990e6d3..e2a42f11 100755
--- a/bin/reproducible_html_breakages.py
+++ b/bin/reproducible_html_breakages.py
@@ -175,9 +175,9 @@ def alien_log(directory=None):
if os.path.getmtime('/'.join([root, file]))<time.time()-86400:
os.remove('/'.join([root, file]))
log.warning('/'.join([root, file]) + ' should not be there and and was older than a day so it was removed.')
- bad_files.append('/'.join([root, file]))
else:
- log.info('/'.join([root, file]) + ' should not be there, but is also less than 24h old and will probably soon be gone. Probably diffoscope is running on that package right now.')
+ bad_files.append('/'.join([root, file]))
+ log.info('/'.join([root, file]) + ' should not be there, but is also less than 24h old and will probably soon be gone.')
except FileNotFoundError:
pass # that bad file is already gone.
return bad_files
@@ -212,9 +212,9 @@ def alien_buildinfo():
try:
if os.path.getmtime('/'.join([root, file]))<time.time()-86400:
os.remove('/'.join([root, file]))
- bad_files.append('/'.join([root, file]))
log.warning('/'.join([root, file]) + ' should not be there and and was older than a day so it was removed.')
else:
+ bad_files.append('/'.join([root, file]))
log.info('/'.join([root, file]) + ' should not be there, but is also less than 24h old and will probably soon be gone.')
except FileNotFoundError:
pass # that bad file is already gone.