summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index b4d56223..31ad7338 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -674,12 +674,8 @@ class Build:
return # suite/arch, or none at all
self.status = str(result[0])
self.version = str(result[1])
- # this is currently used only on rb-pkg pages, no need to have
- if result[2]: # parsable timestamps and the like
- self.build_date = 'at ' + str(result[2]) + ' UTC'
- else:
- self.build_date = \
- '<span style="color:red;font-weight:bold;">UNTESTED</span>'
+ if result[2]:
+ self.build_date = str(result[2]) + ' UTC'
class Package: