Fix issue mentioned by @mig5

This commit is contained in:
Delirious Lettuce 2017-05-26 10:12:11 -06:00
parent 979242b478
commit 5880741c9d

View File

@ -166,11 +166,11 @@ def format_seconds(seconds):
human_readable = []
if days:
human_readable.append("{}d".format(days))
human_readable.append("{:.0f}d".format(days))
if hours:
human_readable.append("{}h".format(hours))
human_readable.append("{:.0f}h".format(hours))
if minutes:
human_readable.append("{}m".format(minutes))
human_readable.append("{:.0f}m".format(minutes))
if seconds or not human_readable:
human_readable.append("{:.0f}s".format(seconds))
return ''.join(human_readable)