summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 773b199e..d1004944 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -213,7 +213,8 @@ def join_status_icon(status, package=None, version=None):
'not_for_us': 'weather-few-clouds-night.png',
'blacklisted': 'error.png'}
if status == 'unreproducible':
- if os.access(BUILDINFO_PATH + '/' + str(package) + '_' + str(version) + '_amd64.buildinfo', os.R_OK):
+ if os.access(BUILDINFO_PATH + '/' + str(package) + '_' + \
+ strip_epoch(str(version)) + '_amd64.buildinfo', os.R_OK):
status = 'FTBR_with_buildinfo'
else:
status = 'FTBR'