From 04ff41f2995bba2e3556a83e7b51787106268fb3 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 22 Sep 2015 16:38:12 +0200 Subject: reproducible: return empty string for duration instead of 'None' --- bin/reproducible_html_live_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/reproducible_html_live_status.py') diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index a1dea9e0..e1a3d8c2 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -13,7 +13,7 @@ from reproducible_html_indexes import build_leading_text_section def convert_into_hms_string(duration): if not duration: - duration = "None" + duration = '' else: duration = int(duration) hours = int(duration/3600) -- cgit v1.2.3-54-g00ecf