mirror of https://github.com/snachodog/mybuddy.git
display 0 minutes ago on dashboard when event is less than 1 minute old
This commit is contained in:
parent
c593fa94c1
commit
38143f4065
|
@ -38,7 +38,7 @@ def duration_string(duration, precision="s"):
|
|||
duration = ""
|
||||
if h > 0:
|
||||
duration = ngettext("%(hours)s hour", "%(hours)s hours", h) % {"hours": h}
|
||||
if m > 0 and precision != "h":
|
||||
if m >= 0 and precision != "h":
|
||||
if duration != "":
|
||||
duration += ", "
|
||||
duration += ngettext("%(minutes)s minute", "%(minutes)s minutes", m) % {
|
||||
|
|
Loading…
Reference in New Issue