diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-22 16:38:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-22 16:38:12 +0200 |
commit | 04ff41f2995bba2e3556a83e7b51787106268fb3 (patch) | |
tree | 0d1735edcfc559a651af9062e35df2e507fa3086 /bin/reproducible_html_live_status.py | |
parent | c64e86a7772aef878f091fcefbeed68270c1edc9 (diff) | |
download | jenkins.debian.net-04ff41f2995bba2e3556a83e7b51787106268fb3.tar.xz |
reproducible: return empty string for duration instead of 'None'
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-x | bin/reproducible_html_live_status.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |