From 20f1f352a0f7ec5bf62329d8fac58b5479fa6243 Mon Sep 17 00:00:00 2001 From: Delirious Lettuce Date: Fri, 26 May 2017 10:12:11 -0600 Subject: [PATCH] Fix issue mentioned by @mig5 --- onionshare/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/onionshare/common.py b/onionshare/common.py index 3008ad3a..86c5c135 100644 --- a/onionshare/common.py +++ b/onionshare/common.py @@ -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)