diff --git a/resources/utilities.py b/resources/utilities.py index 9c866e948..117a6dca4 100644 --- a/resources/utilities.py +++ b/resources/utilities.py @@ -60,8 +60,8 @@ def seconds_to_readable_time(seconds) -> str: seconds = int(seconds) time = "" - if seconds == 0: - return "0m " + if 0 <= seconds < 60: + return "Less than a minute " if seconds < 0: return "Indeterminate time "